docker keep restarting until file is created in a mounted volume
I am trying to create a script that would restart itself, a micro service (in my case its node-red). Here is my docker compose file: docker-compose.yml version: '2.1' services: wifi-connect: build: ./wifi-connect restart: always network_mode: host privileged: true google-iot: build:…