1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

Merge pull request #2422 from Budibase/fix/overridable-watchtower-port

allow users to override watchtower port
This commit is contained in:
Martin McKeaveney 2021-08-20 12:48:58 +01:00 committed by GitHub
commit 2a3ca6a322
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View file

@ -119,6 +119,8 @@ services:
watchtower-service:
image: containrrr/watchtower
ports:
- "${WATCHTOWER_PORT}:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --debug --http-api-update bbapps bbworker

View file

@ -17,4 +17,5 @@ WORKER_PORT=4003
MINIO_PORT=4004
COUCH_DB_PORT=4005
REDIS_PORT=6379
WATCHTOWER_PORT=8080
BUDIBASE_ENVIRONMENT=PRODUCTION

View file

@ -26,6 +26,7 @@ WORKER_PORT=4003
MINIO_PORT=4004
COUCH_DB_PORT=4005
REDIS_PORT=6379
WATCHTOWER_PORT=8080
BUDIBASE_ENVIRONMENT=PRODUCTION`
}