shortener/docker-compose.yaml

14 lines
199 B
YAML
Raw Normal View History

2021-05-29 16:22:13 +02:00
version: "2.4"
services:
shortener:
image: crocmagnon/shortener
build: .
env_file: shortener.env
ports:
- 5000:5000
depends_on:
- redis
redis:
image: redis:6