mirror of
https://github.com/willfarrell/docker-crontab.git
synced 2025-04-03 05:25:13 +02:00
15 lines
324 B
YAML
15 lines
324 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:ro"
|
|
- "${PWD}/config-samples/config.sample.mapping.json:/opt/crontab/config.json:rw"
|