mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 15:28:02 +01:00
7 lines
149 B
Bash
Executable file
7 lines
149 B
Bash
Executable file
#!/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
|