docker-crontab/docker-compose.yml
2017-02-12 16:57:19 -07:00

16 lines
353 B
YAML

version: "2.1"
services:
myapp:
image: alpine:3.5
restart: always
command: "sh -c 'while :; do sleep 1; done'"
crontab:
build: .
restart: always
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
- "/usr/bin/docker:/usr/bin/docker"
- "/Users/willfarrell/Development/docker/crontab/home_dir:/opt/crontab"