- 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
13 lines
383 B
YAML
13 lines
383 B
YAML
services:
|
|
portainer:
|
|
image: portainer/portainer-ce:latest
|
|
container_name: portainer
|
|
restart: always
|
|
privileged: true
|
|
labels:
|
|
- com.centurylinklabs.watchtower.monitor-only=true
|
|
volumes:
|
|
- /mnt/containers/portainer/container-data/data:/data:Z
|
|
- /var/run/docker.sock:/var/run/docker.sock:Z
|
|
ports:
|
|
- 9443:9443 |