shortener/docker-compose.yaml

17 lines
291 B
YAML
Raw Normal View History

2021-05-29 16:22:13 +02:00
version: "2.4"
services:
shortener:
2021-05-29 16:45:45 +02:00
image: rg.fr-par.scw.cloud/crocmagnon/shortener
2021-05-29 16:22:13 +02:00
build: .
env_file: shortener.env
environment:
DATABASE_URL: sqlite:////db/db.sqlite3
2021-05-29 16:22:13 +02:00
ports:
- 8000:8000
volumes:
- shortener_data:/db
volumes:
shortener_data: