Browse Source
Merge pull request #2422 from Budibase/fix/overridable-watchtower-port
allow users to override watchtower port
pull/2426/head
Martin McKeaveney
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
4 additions and
0 deletions
-
hosting/docker-compose.yaml
-
hosting/hosting.properties
-
packages/cli/src/hosting/makeEnv.js
|
|
|
@ -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 |
|
|
|
|
|
|
|
@ -17,4 +17,5 @@ WORKER_PORT=4003 |
|
|
|
MINIO_PORT=4004 |
|
|
|
COUCH_DB_PORT=4005 |
|
|
|
REDIS_PORT=6379 |
|
|
|
WATCHTOWER_PORT=8080 |
|
|
|
BUDIBASE_ENVIRONMENT=PRODUCTION |
|
|
|
|
|
|
|
@ -26,6 +26,7 @@ WORKER_PORT=4003 |
|
|
|
MINIO_PORT=4004 |
|
|
|
COUCH_DB_PORT=4005 |
|
|
|
REDIS_PORT=6379 |
|
|
|
WATCHTOWER_PORT=8080 |
|
|
|
BUDIBASE_ENVIRONMENT=PRODUCTION` |
|
|
|
} |
|
|
|
|
|
|
|
|