1
0

compose.yaml 339 B

123456789101112
  1. services:
  2. restart:
  3. image: alpine
  4. init: true
  5. command: ash -c "if [[ -f /tmp/restart.lock ]] ; then sleep infinity; else touch /tmp/restart.lock; fi"
  6. test:
  7. profiles:
  8. - test
  9. image: alpine
  10. init: true
  11. command: ash -c "if [[ -f /tmp/restart.lock ]] ; then sleep infinity; else touch /tmp/restart.lock; fi"