Changed: removed tmpfs mount and point persistence volumes to correct

dirs in docker-compose
This commit is contained in:
Diego Lendoiro 2021-01-26 15:44:53 +01:00
parent f622dd571b
commit 5a8fd286be
No known key found for this signature in database
GPG Key ID: 3808AD1A50FF0B59
2 changed files with 4 additions and 6 deletions

View File

@ -17,11 +17,9 @@ services:
env_file: env_file:
- env/passbolt.env - env/passbolt.env
volumes: volumes:
- gpg_volume:/var/www/passbolt/config/gpg - gpg_volume:/etc/passbolt/gpg
- images_volume:/var/www/passbolt/webroot/img/public - images_volume:/usr/share/php/passbolt/webroot/img/public
- ./license:/var/www/passbolt/config/license - ./license:/etc/passbolt/license
tmpfs:
- /run
command: ["/usr/bin/wait-for.sh", "-t", "0", "db:3306", "--", "/docker-entrypoint.sh"] command: ["/usr/bin/wait-for.sh", "-t", "0", "db:3306", "--", "/docker-entrypoint.sh"]
ports: ports:
- 80:80 - 80:80

View File

@ -17,7 +17,7 @@ services:
env_file: env_file:
- env/passbolt.env - env/passbolt.env
volumes: volumes:
- gpg_volume:/var/lib/passbolt/.gnupg - gpg_volume:/etc/passbolt/gpg
- images_volume:/usr/share/php/passbolt/webroot/img/public - images_volume:/usr/share/php/passbolt/webroot/img/public
command: ["/usr/bin/wait-for.sh", "-t", "0", "db:3306", "--", "/docker-entrypoint.sh"] command: ["/usr/bin/wait-for.sh", "-t", "0", "db:3306", "--", "/docker-entrypoint.sh"]
ports: ports: