- updated more files to be up-to-date with domain change.
- 7.4 changelog.
- updated docker compose example with watchtower and cobalt image.
This commit is contained in:
wukko
2023-09-09 22:31:24 +06:00
parent 5fb23dae65
commit 572dc20e41
6 changed files with 35 additions and 22 deletions

View File

@ -2,7 +2,7 @@ version: '3.5'
services:
cobalt-api:
build: .
image: ghcr.io/wukko/cobalt:latest
restart: unless-stopped
container_name: cobalt-api
@ -24,8 +24,11 @@ services:
#- cookiePath=cookies.json
# see src/modules/processing/cookie/cookies_example.json for example file.
labels:
- com.centurylinklabs.watchtower.scope=cobalt
cobalt-web:
build: .
image: ghcr.io/wukko/cobalt:latest
restart: unless-stopped
container_name: cobalt-web
@ -40,6 +43,17 @@ services:
environment:
- webPort=9001
# replace webURL with your instance's target url in same format
- webURL=https://co.wukko.me/
- webURL=https://cobalt.tools/
# replace apiURL with preferred api instance url
- apiURL=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