🤖 drone.dotya.ml configuration files https://drone.dotya.ml
Go to file
surtur a69334a63e
compose(drone-server): bump to 2.13.0
2022-09-28 17:17:44 +02:00
etc compose(drone-server): bump to 2.13.0 2022-09-28 17:17:44 +02:00
.gitignore feat: added .gitignore 2020-05-29 12:56:12 +02:00
README.md update README.md 2022-03-26 03:13:07 +01:00

drone-ci-configs

this repo holds

  • docker-compose.yml for drone.dotya.ml instance of Drone CI
  • drone-related env files (server.env, runner-docker.env)
  • systemd Unit file to easily start/stop the instance service and systemd Slice file to control its resource usage

prepare environment

mkdir -pv /etc/drone /etc/systemd/system/drone.service.d
  • unless running with unprivileged user, copy drone.service and drone.slice files to /etc/systemd/system and override.conf into /etc/systemd/system/drone.service.d

  • reload systemd daemon

    systemctl daemon-reload
    
  • let drone.service start automatically on system startup and start the service immediately

    systemctl enable --now drone.service
    

alternatively, copy the folder structure etc to your /etc

notes

  • using this set-up a reverse proxy (such as nginx) is also needed to forward traffic to and from drone server that listens exclusively on localhost
  • this set-up works with Gitea in mind, although it shouldn't be too hard to change the configs to work with other git providers (see server.env file)