Files
ncore-stats/compose.yaml
T
2026-03-23 00:14:44 +01:00

26 lines
443 B
YAML

services:
ncore-stats:
image: ghcr.io/skidoodle/ncore-stats:latest
container_name: ncore-stats
restart: unless-stopped
user: "1000:1000"
ports:
- "3000:3000"
volumes:
- data:/app/data
configs:
- source: users_config
target: /app/users.txt
environment:
- NICK=${NICK}
- PASS=${PASS}
configs:
users_config:
content: |
alice:123
bob:456
volumes:
data: