shortener/docker-compose.yaml

17 lines
291 B
YAML

version: "2.4"
services:
shortener:
image: rg.fr-par.scw.cloud/crocmagnon/shortener
build: .
env_file: shortener.env
environment:
DATABASE_URL: sqlite:////db/db.sqlite3
ports:
- 8000:8000
volumes:
- shortener_data:/db
volumes:
shortener_data: