fierce-accountant-85178
05/05/2025, 2:44 PMdocker-compose up -d
) on startup ? I've tried using provisioning scripts but end up getting stuck waiting for docker to be ready as the startup doesn't start Docker until the provisioning scripts have finished...fast-garage-66093
05/05/2025, 3:53 PMrestart
policy in the compose file to achieve this? Something like
services:
your_service:
image: your_image
restart: unless-stopped
fierce-accountant-85178
05/06/2025, 7:04 AMfast-garage-66093
05/06/2025, 3:58 PMrdctl start
while ! curl -s 127.0.0.1:3000 >/dev/null; do sleep 1; done
open <http://127.0.0.1:3000>