Compare commits

...

2 commits

5 changed files with 20 additions and 2 deletions

View file

@ -3,7 +3,7 @@ version: "3"
services:
web:
image: gitea/gitea:1.13
image: gitea/gitea:1
volumes:
- ${VOLUMES_PATH}/gitea_data:/data
- /etc/timezone:/etc/timezone:ro

View file

@ -3,7 +3,7 @@ version: "3.3"
services:
traefik:
image: traefik:v2.3
image: traefik:v2.4
restart: unless-stopped
command:
- "--api.insecure=false"

6
pull-all.sh Executable file
View file

@ -0,0 +1,6 @@
#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose pull);
done

6
start-all.sh Executable file
View file

@ -0,0 +1,6 @@
#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
done

6
stop-all.sh Executable file
View file

@ -0,0 +1,6 @@
#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
done