We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usually I update my docker images with docker-compose pull. But not possible since the images are built locally from Dockerfile.
Do I need to resync with the repo?
Thanks
The text was updated successfully, but these errors were encountered:
Create a file update.sh and make it executable chmod a+x ./update.sh:
update.sh
chmod a+x ./update.sh
#!/bin/bash for container in $(docker ps | grep "farfalle-" | awk '{print $1}'); do echo $container; docker stop $container; docker rm $container; done git pull docker-compose -f docker-compose.dev.yaml up --build -d
Excecute ./update.sh consequently.
./update.sh
Sorry, something went wrong.
thanks, but since the Dockerfiles might have changed I would need to do a git sync first otherwise it will build off the old stuff...
No branches or pull requests
Usually I update my docker images with docker-compose pull. But not possible since the images are built locally from Dockerfile.
Do I need to resync with the repo?
Thanks
The text was updated successfully, but these errors were encountered: