mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 23:38:02 +01:00
15 lines
276 B
YAML
15 lines
276 B
YAML
services:
|
|
django:
|
|
image: crocmagnon/charasheet:latest
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./db:/app/db
|
|
- ./data:/app/data
|
|
ports:
|
|
- "127.0.0.1:8001:8000"
|
|
user: 1000:1000
|
|
restart: always
|
|
init: true
|
|
tty: true
|
|
mem_limit: 512m
|