mirror of https://github.com/docker/compose.git
13 lines
339 B
YAML
13 lines
339 B
YAML
services:
|
|
restart:
|
|
image: alpine
|
|
init: true
|
|
command: ash -c "if [[ -f /tmp/restart.lock ]] ; then sleep infinity; else touch /tmp/restart.lock; fi"
|
|
|
|
test:
|
|
profiles:
|
|
- test
|
|
image: alpine
|
|
init: true
|
|
command: ash -c "if [[ -f /tmp/restart.lock ]] ; then sleep infinity; else touch /tmp/restart.lock; fi"
|