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.
22 lines
511 B
YAML
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 |