1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
mxpv-podsync/src/Podsync/docker-compose.yml
2017-01-04 17:57:05 -08:00

24 lines
410 B
YAML

version: '2'
services:
app:
image: podsync
build:
context: .
dockerfile: Dockerfile
args:
- PORT=80
restart: always
ports:
- 80:80
environment:
- Podsync:RedisConnectionString=redis
env_file:
- ~/podsync.env
redis:
image: redis
command: redis-server --appendonly yes
restart: always
volumes:
- /data/redis:/data