Inicjalizacja repozytorium po uporządkowaniu Gitea; dodanie gitignore
This commit is contained in:
1
runners/config/.runner_system_id
Normal file
1
runners/config/.runner_system_id
Normal file
@@ -0,0 +1 @@
|
||||
r_rRFD45yY68Dv
|
||||
32
runners/config/config.toml
Normal file
32
runners/config/config.toml
Normal file
@@ -0,0 +1,32 @@
|
||||
concurrent = 1
|
||||
check_interval = 0
|
||||
shutdown_timeout = 0
|
||||
|
||||
[session_server]
|
||||
session_timeout = 1800
|
||||
|
||||
[[runners]]
|
||||
name = "local-debian"
|
||||
url = "http://gitlab"
|
||||
clone_url = "http://gitlab"
|
||||
id = 1
|
||||
token = "glrt-vshOpu3mA-hlD4fjG_8ay286MQp0OjEKdTp5Cw.01.121vgqu56"
|
||||
token_obtained_at = 2025-12-16T00:10:11Z
|
||||
token_expires_at = 0001-01-01T00:00:00Z
|
||||
executor = "docker"
|
||||
[runners.cache]
|
||||
MaxUploadedArchiveSize = 0
|
||||
[runners.cache.s3]
|
||||
[runners.cache.gcs]
|
||||
[runners.cache.azure]
|
||||
[runners.docker]
|
||||
tls_verify = false
|
||||
image = "alpine:latest"
|
||||
privileged = false
|
||||
disable_entrypoint_overwrite = false
|
||||
oom_kill_disable = false
|
||||
disable_cache = false
|
||||
volumes = ["/cache"]
|
||||
shm_size = 0
|
||||
network_mtu = 0
|
||||
network_mode = "central_dogma"
|
||||
16
runners/docker-compose.yml
Normal file
16
runners/docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
gitlab-runner:
|
||||
image: gitlab/gitlab-runner:alpine
|
||||
container_name: gitlab-runner
|
||||
restart: always
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- ./config:/etc/gitlab-runner
|
||||
networks:
|
||||
- central_dogma
|
||||
|
||||
networks:
|
||||
central_dogma:
|
||||
external: true # <--- To mówi: "nie twórz nowej sieci, podepnij się pod tę, którą stworzył GitLab"
|
||||
Reference in New Issue
Block a user