ansible/playbooks/apps/files/charasheet/docker-compose.yml

16 lines
276 B
YAML
Raw Normal View History

2024-10-11 17:18:53 +02:00
services:
django:
image: crocmagnon/charasheet:latest
env_file:
- .env
volumes:
- ./db:/app/db
- ./data:/app/data
ports:
2024-10-15 19:00:21 +02:00
- "127.0.0.1:8001:8000"
2024-10-11 17:18:53 +02:00
user: 1000:1000
restart: always
init: true
tty: true
mem_limit: 512m