docker-compose example: update env variables & clearer messaging

This commit is contained in:
wukko 2024-03-05 19:10:04 +06:00
parent e16ee6c1d3
commit a480221fdf

View file

@ -13,17 +13,17 @@ services:
ports: ports:
- 9000:9000/tcp - 9000:9000/tcp
# if you're using a reverse proxy, uncomment the next line: # if you're using a reverse proxy, uncomment the next line and remove the one above (9000:9000/tcp):
#- 127.0.0.1:9000:9000 #- 127.0.0.1:9000:9000
environment: environment:
# replace apiURL with your instance's target url in same format # replace apiURL with your instance's target url in same format
- apiURL=https://co.wuk.sh/ - API_URL=https://co.wuk.sh/
# replace apiName with your instance's distinctive name # replace apiName with your instance's distinctive name
- apiName=eu-nl - API_NAME=eu-nl
# if you want to use cookies when fetching data from services, uncomment the next line # if you want to use cookies when fetching data from services, uncomment the next line
#- cookiePath=/cookies.json #- COOKIE_PATH=/cookies.json
# see cookies_example.json for example file. # see cookies.example.json for example file.
labels: labels:
- com.centurylinklabs.watchtower.scope=cobalt - com.centurylinklabs.watchtower.scope=cobalt
@ -43,14 +43,14 @@ services:
ports: ports:
- 9001:9001/tcp - 9001:9001/tcp
# if you're using a reverse proxy, uncomment the next line: # if you're using a reverse proxy, uncomment the next line and remove the one above (9001:9001/tcp):
#- 127.0.0.1:9001:9001 #- 127.0.0.1:9001:9001
environment: environment:
# replace webURL with your instance's target url in same format # replace https://cobalt.tools/ with your instance's target url in same format
- webURL=https://cobalt.tools/ - WEB_URL=https://cobalt.tools/
# replace apiURL with preferred api instance url # replace https://co.wuk.sh/ with preferred api instance url
- apiURL=https://co.wuk.sh/ - API_URL=https://co.wuk.sh/
labels: labels:
- com.centurylinklabs.watchtower.scope=cobalt - com.centurylinklabs.watchtower.scope=cobalt