let act-runner build the wiki (#182)
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 40s
ansible-lint / gitleaks (push) Successful in 4s

Reviewed-on: https://git.mgrote.net///mg/homeserver/pulls/182
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
This commit is contained in:
Michael Grote 2024-09-16 18:47:35 +02:00 committed by Michael Grote
parent 5ed3966274
commit c8c52dc740
3 changed files with 14 additions and 5 deletions

View file

@ -0,0 +1,8 @@
---
container:
valid_volumes:
- /docker/wiki/site
log:
level: info
runner:
capacity: 4

View file

@ -1,6 +1,5 @@
---
# https://gitea.com/gitea/act_runner/src/branch/main/examples/docker-compose
version: "3.7"
services:
runner:
container_name: act-runner
@ -8,11 +7,13 @@ services:
restart: always
volumes:
- act_runner_data:/data
- ./config.yml:/config.yml
- /var/run/docker.sock:/var/run/docker.sock
environment:
GITEA_INSTANCE_URL: https://git.mgrote.net
GITEA_RUNNER_REGISTRATION_TOKEN: "{{ lookup('viczem.keepass.keepass', 'gitea_act_runner_token', 'password') }}" # only used on first start, https://git.mgrote.net/admin/actions/runners
GITEA_RUNNER_NAME: "docker10-act-runner"
CONFIG_FILE: /config.yml
volumes:
act_runner_data:

View file

@ -9,10 +9,10 @@ services:
ports:
- 8087:80
volumes:
- /docker/wiki/site:/usr/local/apache2/htdocs/
# /docker/wiki/site ist ein lokales Verzeichnis auf docker10
# dieser Verzeichnis wird direkt in der wiki ci gemountet
# und die daten werden dort reingeschrieben
- /docker/wiki/site/site:/usr/local/apache2/htdocs/
# /docker/wiki/site/site ist ein lokales Verzeichnis auf docker10
# dieser Verzeichnis wird direkt in der Wiki CI gemountet
# und die Daten werden dort reingeschrieben
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
interval: 30s