forgejo-runner/examples/docker-compose/compose-forgejo-and-runner.yml

93 lines
3.6 KiB
YAML
Raw Normal View History

# Copyright 2024 The Forgejo Authors.
2023-08-24 11:28:17 +01:00
# SPDX-License-Identifier: MIT
#
# Create a secret with:
#
# openssl rand -hex 20
#
# Replace all occurences of {SHARED_SECRET} below with the output.
#
# NOTE: a token obtained from the Forgejo web interface cannot be used
# as a shared secret.
#
# Replace ${RUNNER_TOKEN} with the token obtained from the Forgejo web interface.
#
2024-09-28 18:31:13 +01:00
# Replace {ROOT_PASSWORD} with a secure password.
2024-09-27 18:38:59 +01:00
#
volumes:
docker_certs:
2023-08-24 11:28:17 +01:00
services:
docker-in-docker:
image: code.forgejo.org/oci/docker:dind
hostname: docker # Must set hostname for both internal DNS and TLS to work as certs are only valid for docker and localhost
2024-09-27 18:38:59 +01:00
restart: unless-stopped
2024-08-13 07:37:52 +01:00
privileged: true
environment:
DOCKER_TLS_CERTDIR: "/certs" # set to "" to disable the use of TLS, also manually update existing runner configs to use port 2375
2024-09-27 18:38:59 +01:00
DOCKER_HOST: "docker" # remove aswell to disable TLS
volumes:
- docker_certs:/certs
2023-08-24 11:28:17 +01:00
forgejo:
image: codeberg.org/forgejo/forgejo:1.21
hostname: forgejo
2023-08-24 11:28:17 +01:00
volumes:
- /srv/forgejo-data:/data
2023-08-24 11:28:17 +01:00
ports:
- 8080:3000
2024-09-27 18:38:59 +01:00
environment:
FORGEJO__security__INSTALL_LOCK: "true" # remove in production
2024-09-28 18:36:47 +01:00
FORGEJO__log__LEVEL: "debug" # remove in production
FORGEJO__repository__ENABLE_PUSH_CREATE_USER: "true" # enables the ability to create a repo when pushing
FORGEJO__repository__DEFAULT_PUSH_CREATE_PRIVATE: "false" # defaults above to public
FORGEJO__repository__DEFAULT_REPO_UNITS: "repo.code,repo.actions"
# `command` is not neecessary, but can be used to create an admin user as shown below when combined with INSTALL_LOCK
command: >-
bash -c '
/bin/s6-svscan /etc/s6 &
sleep 10 ;
2024-09-28 18:31:13 +01:00
su -c "forgejo admin user create --admin --username root --password {ROOT_PASSWORD} --email root@example.com" git ;
su -c "forgejo forgejo-cli actions register --secret {SHARED_SECRET}" git ;
sleep infinity
'
2023-08-24 11:28:17 +01:00
# all values that have defaults listed are optional
2024-09-27 18:38:59 +01:00
# only FORGEJO_SECRET or RUNNER_TOKEN is required, the secret will be prioritized
# FORGEJO_URL is required if forgejo is not in this compose file or docker network
runner-daemon:
## TODO: Update image to the the release
## made from this PR: https://code.forgejo.org/forgejo/runner/pulls/283
# image: code.forgejo.org/forgejo/runner:3.4.1
build: ../../
2024-09-27 18:38:59 +01:00
user: "1000" # defaults to 1000,
restart: unless-stopped # needed for fixing file ownership on restart
2023-08-24 11:28:17 +01:00
volumes:
- /srv/runner-data:/data
- docker_certs:/certs
depends_on:
2023-08-24 11:28:17 +01:00
- docker-in-docker
- forgejo
2024-09-28 18:31:13 +01:00
links:
- forgejo
- docker-in-docker
2023-08-24 11:28:17 +01:00
environment:
CONFIG_FILE: config.yml # defaults to /data/config.yml
DOCKER_HOST: "tcp://docker:2376" # defaults to tcp://docker:2376
DOCKER_CERT_PATH: "/certs/client" # defaults to /certs/client
2024-09-27 18:38:59 +01:00
DOCKER_TLS_VERIFY: "1" # defaults to 1
2024-09-28 19:08:20 +01:00
DOCKER_PRIVILEGED: "true" # defaults to false for security reasons
FORGEJO_URL: ${FORGEJO_URL} # defaults to http://forgejo:3000
FORGEJO_SECRET: "{SHARED_SECRET}" # shared secret, must match Forgejo's, overrides RUNNER_TOKEN
RUNNER_FILE: .runner # defaults to /data/runner.json
RUNNER_NAME: runner-daemon # defaults to forgejo-runner, used for registration
RUNNER_TOKEN: ${RUNNER_TOKEN} # token obtained from Forgejo web interface
DEBUG: "true" # defaults to false, set to true to enable debug logging
SKIP_WAIT: "false" # defaults to false, set to true to skip the 10 second wait to allow for forgejo and docker-in-docker to start