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