16 lines
483 B
YAML
Executable File
16 lines
483 B
YAML
Executable File
services:
|
|
runner-1:
|
|
image: gitea/act_runner:latest
|
|
restart: always
|
|
environment:
|
|
- CONFIG_FILE=/runner/config.yaml
|
|
- GITEA_INSTANCE_URL=https://super-admins.online
|
|
- GITEA_RUNNER_REGISTRATION_TOKEN=WRXwMh6gi6CrF3XddpkH4mcrx8sNpnyBam0FY9gj
|
|
volumes:
|
|
- ./runner-1/config.yaml:/runner/config.yaml
|
|
- ./runner-1/data:/data
|
|
- ./runner-1/cache:/root/.cache
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
ports:
|
|
- "8088:8088"
|