Files
k-mood/docker-compose.dev.yml
Gabriel Kaszewski 95739892de
Some checks failed
CI / ci (push) Failing after 1m48s
init
2026-08-25 23:24:36 +02:00

15 lines
244 B
YAML

services:
backend:
build: .
ports:
- "3000:3000"
volumes:
- k-mood-data:/data
- ./config.dev.toml:/data/config.toml:ro
environment:
- RUST_LOG=debug
restart: unless-stopped
volumes:
k-mood-data: