- quizmaster: removed entirely (test service, no longer used); also removed Portainer stack and /srv/quizmaster data - leafweb: removed orphaned MSSQL compose file (no running container, no Portainer stack, no data on disk) - authelia, gitea, couchdb, portainer, immich (server + ml): add com.centurylinklabs.watchtower.monitor-only=true so watchtower still notifies on new versions without auto-applying them - ladder: restore restart: unless-stopped (was commented out) - rackpeek: add missing TZ env var
22 lines
507 B
YAML
22 lines
507 B
YAML
services:
|
|
couchserver:
|
|
image: couchdb
|
|
container_name: couchdb
|
|
restart: always
|
|
labels:
|
|
- com.centurylinklabs.watchtower.monitor-only=true
|
|
ports:
|
|
- "127.0.0.1:5984:5984"
|
|
environment:
|
|
- COUCHDB_USER=admin
|
|
- COUCHDB_PASSWORD=${ADMIN_PASSWORD}
|
|
volumes:
|
|
- /srv/couchdb-data:/opt/couchdb/data
|
|
- /srv/couchdb-config/local.ini:/opt/couchdb/etc/local.ini
|
|
networks:
|
|
- npm-network
|
|
|
|
networks:
|
|
default:
|
|
npm-network:
|
|
external: true |