ansible/playbooks/apps/files/shortener/docker-compose.yaml
Gabriel Augendre fe3cfeff25
Some checks are pending
/ run ansible (push) Waiting to run
open docker ports on localhost only
2024-10-15 19:00:21 +02:00

10 lines
223 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
ports:
- "127.0.0.1:8011:8000"