made space for new stuff

This commit is contained in:
2026-04-28 10:06:18 +03:00
parent 806226fc00
commit 543e2ef475
3 changed files with 8 additions and 8 deletions
+8 -8
View File
@@ -1,15 +1,15 @@
services:
runner-rust:
image: gitea-runner-rust
build: /etc/komodo/stacks/gitea-runners
build:
context: .
dockerfile: dockerfiles/rust/Dockerfile
container_name: rust-runner-gitea
volumes:
- gitea-runner-data:/data # named volume, has your .runner registration
- /etc/komodo/stacks/gitea-runners/rust-data/config.yml:/data/config.yml # your config override
- /var/run/docker.sock:/var/run/docker.sock # docker socket
# Map the specific 'rust' folder to the container's /data
- ./runner-data/rust:/data
# Map your specific rust config
- ./rust-data/config.yml:/data/config.yml
- /var/run/docker.sock:/var/run/docker.sock
network_mode: host
restart: unless-stopped
volumes:
gitea-runner-data:
external: true # tells compose this volume already exists, don't recreate it
View File
View File