mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-06 08:19:59 +00:00
65 lines
2.2 KiB
YAML
65 lines
2.2 KiB
YAML
version: '3.5'
|
|
|
|
services:
|
|
cobalt-api:
|
|
image: ghcr.io/wukko/cobalt:7
|
|
restart: unless-stopped
|
|
container_name: cobalt-api
|
|
|
|
init: true
|
|
|
|
# if container doesn't run detached on your machine, uncomment the next line:
|
|
#tty: true
|
|
|
|
ports:
|
|
- 9000:9000/tcp
|
|
# 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 https://co.wuk.sh/ with your instance's target url in same format
|
|
- API_URL=https://co.wuk.sh/
|
|
# replace eu-nl with your instance's distinctive name
|
|
- API_NAME=eu-nl
|
|
# if you want to use cookies when fetching data from services, uncomment the next line
|
|
#- COOKIE_PATH=/cookies.json
|
|
# see cookies.example.json for example file.
|
|
labels:
|
|
- 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:
|
|
image: ghcr.io/wukko/cobalt:7
|
|
restart: unless-stopped
|
|
container_name: cobalt-web
|
|
|
|
init: true
|
|
|
|
# if container doesn't run detached on your machine, uncomment the next line:
|
|
#tty: true
|
|
|
|
ports:
|
|
- 9001:9001/tcp
|
|
# 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 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
|
|
|
|
# update the cobalt image automatically with watchtower
|
|
watchtower:
|
|
image: ghcr.io/containrrr/watchtower
|
|
restart: unless-stopped
|
|
command: --cleanup --scope cobalt --interval 900
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|