Files
docker-infrastructure/couchdb/docker-compose.yml
T
poprhythm 773e800b34 pin filebrowser, couchdb, statping to explicit versions instead of floating beta/dev/untagged
Same category of risk as the gitea :nightly issue: floating dev/beta tags
let watchtower silently pull unvetted upstream builds. couchdb had no tag
at all (implicit :latest); filebrowser and statping only publish
beta/dev channels upstream so pinned to the exact version in use rather
than a moving target.
2026-08-07 00:07:36 +00:00

22 lines
511 B
YAML

services:
couchserver:
image: couchdb:3.5
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