changes
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s

This commit is contained in:
Gaxinto Theodorio 2025-05-06 22:43:32 -04:00
parent ec0ef5923e
commit c26e8968ef
2 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@ actions:
- "@daily" - "@daily"
- title: deploy all containers - title: deploy all containers
shell: | shell: |
cd /home/geezo/docker_containers cd /docker_containers
while IFS= read -r dir; do while IFS= read -r dir; do
if [ -f "${dir}/docker-compose.yml" ] || [ -f "${dir}/docker-compose.yaml" ]; then if [ -f "${dir}/docker-compose.yml" ] || [ -f "${dir}/docker-compose.yaml" ]; then
echo "Processing directory: ${dir}" echo "Processing directory: ${dir}"

View File

@ -6,6 +6,7 @@ services:
- ./:/config # replace host path or volume as needed - ./:/config # replace host path or volume as needed
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- /home/geezo/docker_containers/autorestic:/autorestic - /home/geezo/docker_containers/autorestic:/autorestic
- /home/geezo/docker_containers:/docker_containers
ports: ports:
- "1004:1337" - "1004:1337"
restart: unless-stopped restart: unless-stopped