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

23 lines
409 B
YAML
Raw Normal View History

version: '2'
services:
app:
image: podsync
build:
context: .
dockerfile: Dockerfile
args:
2017-01-04 11:32:04 -08:00
- PORT=80
2017-01-04 17:57:05 -08:00
restart: always
2017-01-04 11:32:04 -08:00
ports:
- 80:80
environment:
- Podsync:RedisConnectionString=redis
env_file:
- ~/podsync.env
redis:
image: redis
command: redis-server --appendonly yes
2017-01-04 17:57:05 -08:00
restart: always
volumes:
2017-01-20 17:22:03 -08:00
- /data/redis:/data