From a480221fdf89d3e5ecc7e9bda256801255c560cf Mon Sep 17 00:00:00 2001 From: wukko Date: Tue, 5 Mar 2024 19:10:04 +0600 Subject: [PATCH] docker-compose example: update env variables & clearer messaging --- docs/examples/docker-compose.example.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/examples/docker-compose.example.yml b/docs/examples/docker-compose.example.yml index b5ce8a30..294bcb57 100644 --- a/docs/examples/docker-compose.example.yml +++ b/docs/examples/docker-compose.example.yml @@ -13,17 +13,17 @@ services: ports: - 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 environment: # 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 - - apiName=eu-nl + - API_NAME=eu-nl # if you want to use cookies when fetching data from services, uncomment the next line - #- cookiePath=/cookies.json - # see cookies_example.json for example file. + #- COOKIE_PATH=/cookies.json + # see cookies.example.json for example file. labels: - com.centurylinklabs.watchtower.scope=cobalt @@ -43,14 +43,14 @@ services: ports: - 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 environment: - # replace webURL with your instance's target url in same format - - webURL=https://cobalt.tools/ - # replace apiURL with preferred api instance url - - apiURL=https://co.wuk.sh/ + # replace https://cobalt.tools/ with your instance's target url in same format + - WEB_URL=https://cobalt.tools/ + # replace https://co.wuk.sh/ with preferred api instance url + - API_URL=https://co.wuk.sh/ labels: - com.centurylinklabs.watchtower.scope=cobalt