You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1234567891011 |
- #!/bin/bash
-
- export COMPOSE_HTTP_TIMEOUT=600
-
- # pull new images
- docker-compose pull
-
- # restart container
- docker-compose down
- docker-compose up -d
- docker images --quiet --filter=dangling=true | xargs --no-run-if-empty docker rmi
|