shortener/docker-compose.yaml
2021-05-29 16:22:13 +02:00

14 lines
199 B
YAML

version: "2.4"
services:
shortener:
image: crocmagnon/shortener
build: .
env_file: shortener.env
ports:
- 5000:5000
depends_on:
- redis
redis:
image: redis:6