ansible/playbooks/apps/files/shortener/docker-compose.yaml
Gabriel Augendre c39e15a7d9
Some checks are pending
/ run ansible (push) Waiting to run
shortener: tty & init
2024-12-04 20:11:37 +01:00

12 lines
252 B
YAML

services:
django:
image: rg.fr-par.scw.cloud/crocmagnon/shortener
env_file: shortener.env
restart: always
volumes:
- ./shortener_data:/db
mem_limit: 300m
tty: true
init: true
ports:
- "127.0.0.1:8011:8000"