I have been trying to figure out for a few weeks what this means, as whatever template I use states additional xteve is not allowed.
xteve:
container_name: xteve
environment:
- PUID=1001
- PGID=100
- TZ=Pacific/Auckland
ports:
- 34400:34400
volumes:
- /srv/dev-disk-by-uuid-129ba3c6-37fd-4ee3-ad98-3e035875b93f/Appdata/xteve:/home/xteve/conf
- /srv/dev-disk-by-uuid-129ba3c6-37fd-4ee3-ad98-3e0358075b93f/Appdata/xteve/temp:/tmp/xteve
image: 'dnsforge/xteve'
labels:
- autoheal=0
healthcheck:
test: curl -fSs http://127.0.0.1:34400 || exit 1
start_period: 180s
timeout: 10s
interval: 10s
retries: 3
restart: unless-stopped
I have the files created for appdata/xteve/config though cannot figure out what i am doing wrong only a few weeks into using any yaml, i understand from google its maybe to do with the indentations.
Any help would be much appreciated.
This is the original template –
xteve:
container_name: xteve
environment:
- PUID=$PUID
- PGID=$PGID
- TZ=$TIME_ZONE
ports:
- 34400:34400
volumes:
- $PERSIST/xteve:/home/xteve/conf
- $PERSIST/xteve/temp:/tmp/xteve
image: 'dnsforge/xteve'
labels:
- autoheal=$AUTOHEAL_RESTART
healthcheck:
test: curl -fSs http://127.0.0.1:34400 || exit 1
start_period: 180s
timeout: 10s
interval: 10s
retries: 3
restart: unless-stopped