Skip to content

Instantly share code, notes, and snippets.

@mikedamm
Last active June 1, 2021 13:01
Show Gist options
  • Save mikedamm/53dc6a78b976eeac88893427424c2527 to your computer and use it in GitHub Desktop.
Save mikedamm/53dc6a78b976eeac88893427424c2527 to your computer and use it in GitHub Desktop.
Docker auto-restart on file change
while inotifywait -e close_write -r . ; do docker-compose build --no-cache ; docker-compose up -d --force-recreate ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment