Skip to content

Instantly share code, notes, and snippets.

@emrysr
Created March 19, 2020 23:47
Show Gist options
  • Select an option

  • Save emrysr/5fc68a6f44bbdfc3da1ade3077b4c721 to your computer and use it in GitHub Desktop.

Select an option

Save emrysr/5fc68a6f44bbdfc3da1ade3077b4c721 to your computer and use it in GitHub Desktop.
clean out docker-compose files before rebuilding and running
$ docker-compose rm -vf && \
docker-compose pull && \
docker-compose build --no-cache && \
docker-compose up --force-recreate --always-recreate-dep
```bash
docker-compose rm -vf && docker-compose pull && docker-compose build --no-cache && docker-compose up --force-recreate --always-recreate-dep
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment