mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 23:38:02 +01:00
8 lines
149 B
Text
8 lines
149 B
Text
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
pushd /mnt/data/manuels
|
||
|
docker compose --ansi never pull
|
||
|
docker compose --ansi never up -d
|
||
|
popd
|
||
|
docker image prune -f
|