mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
24 lines
410 B
YAML
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
|