small improvements: script, nextclout, git

This commit is contained in:
Florian Zirker 2024-06-26 10:14:14 +00:00
parent ddeab1fe89
commit bf87e33277
3 changed files with 8 additions and 6 deletions

View file

@ -1,6 +1,6 @@
services:
web:
forgejo:
image: codeberg.org/forgejo/forgejo:${FORGEJO_VERSION}
volumes:
- ${VOLUMES_PATH}/git/forgejo_data:/data

View file

@ -108,7 +108,7 @@ services:
db:
image: mariadb:10
image: mariadb:${MARIADB_VERSION}
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW --skip-innodb-read-only-compressed
volumes:
- ${VOLUMES_PATH}/nextcloud/db:/var/lib/mysql

View file

@ -1,9 +1,11 @@
#/bin/bash/
for dir in ./*/ ; do
( cd "$dir" && echo "[Building $dir]" && docker compose build --pull );
echo "[Building and Pulling $dir]"
cd "$dir";
docker compose pull --ignore-buildable
docker compose build --pull;
cd ..;
echo;
done
for dir in ./*/ ; do
( cd "$dir" && echo "[Pulling $dir]" && docker compose pull --ignore-buildable );
done