mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-17 22:00:00 +00:00
updated docker compose example
so that others dont repeat my mistakes
This commit is contained in:
parent
fd31b7d4ce
commit
385e8d98f0
1 changed files with 9 additions and 2 deletions
|
@ -6,6 +6,8 @@ services:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: cobalt-api
|
container_name: cobalt-api
|
||||||
|
|
||||||
|
init: true
|
||||||
|
|
||||||
# if container doesn't run detached on your machine, uncomment the next line:
|
# if container doesn't run detached on your machine, uncomment the next line:
|
||||||
#tty: true
|
#tty: true
|
||||||
|
|
||||||
|
@ -21,17 +23,22 @@ services:
|
||||||
# replace apiName with your instance's distinctive name
|
# replace apiName with your instance's distinctive name
|
||||||
- apiName=eu-nl
|
- apiName=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
|
#- cookiePath=/cookies.json
|
||||||
# see src/modules/processing/cookie/cookies_example.json for example file.
|
# see src/modules/processing/cookie/cookies_example.json for example file.
|
||||||
|
|
||||||
labels:
|
labels:
|
||||||
- com.centurylinklabs.watchtower.scope=cobalt
|
- com.centurylinklabs.watchtower.scope=cobalt
|
||||||
|
|
||||||
|
# if you want to use cookies when fetching data from services, uncomment volumes and next line
|
||||||
|
#volumes:
|
||||||
|
#- ./cookies.json:/cookies.json
|
||||||
|
|
||||||
cobalt-web:
|
cobalt-web:
|
||||||
image: ghcr.io/wukko/cobalt:latest
|
image: ghcr.io/wukko/cobalt:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: cobalt-web
|
container_name: cobalt-web
|
||||||
|
|
||||||
|
init: true
|
||||||
|
|
||||||
# if container doesn't run detached on your machine, uncomment the next line:
|
# if container doesn't run detached on your machine, uncomment the next line:
|
||||||
#tty: true
|
#tty: true
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue