mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-27 14:01:15 +00:00
Update docker-compose.yml
fix port mappings and APP_FULL_BASE_URL
This commit is contained in:
parent
92920ed4c9
commit
244195fada
|
@ -22,7 +22,7 @@ services:
|
|||
depends_on:
|
||||
- db
|
||||
environment:
|
||||
APP_FULL_BASE_URL: https://passbolt.example.com # adjust
|
||||
APP_FULL_BASE_URL: http://127.0.0.1:8543 # adjust http/https and add your hostname or domain
|
||||
DATASOURCES_DEFAULT_HOST: "db"
|
||||
DATASOURCES_DEFAULT_USERNAME: "passbolt"
|
||||
DATASOURCES_DEFAULT_PASSWORD: "P4ssb0lt"
|
||||
|
@ -32,7 +32,7 @@ services:
|
|||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/passbolt/jwt:/etc/passbolt/jwt
|
||||
command: ["/usr/bin/wait-for.sh", "-t", "0", "db:3306", "--", "/docker-entrypoint.sh"]
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
# - 80:8080 # alternative port mappings if rootless image is used
|
||||
# - 443:4433 # alternative port mappings if rootless image is used
|
||||
- 8543:80 # HTTP
|
||||
- 8432:443 # HTTPS
|
||||
# - 8543:8080 # alternative port mappings if rootless image is used
|
||||
# - 8432:4433 # alternative port mappings if rootless image is used
|
||||
|
|
Loading…
Reference in New Issue
Block a user