mirror of
https://github.com/skidoodle/ncore-stats.git
synced 2026-04-27 23:37:36 +02:00
26 lines
443 B
YAML
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:
|