22 lines
677 B
YAML
22 lines
677 B
YAML
|
---
|
||
|
- name: Drone container
|
||
|
docker_container:
|
||
|
name: drone
|
||
|
image: drone/drone:latest
|
||
|
restart_policy: unless-stopped
|
||
|
networks:
|
||
|
- name: external_services
|
||
|
volumes:
|
||
|
- "{{ drone.volume_folder }}:/data"
|
||
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
||
|
env:
|
||
|
DRONE_GITEA_SERVER: "https://{{ gitea.domain }}"
|
||
|
DRONE_GITEA_ALWAYS_AUTH: "False"
|
||
|
DRONE_RUNNER_CAPACITY: "2"
|
||
|
DRONE_SERVER_HOST: "{{ drone.domain }}"
|
||
|
DRONE_SERVER_PROTO: "https"
|
||
|
PLUGIN_CUSTOM_DNS: "91.239.100.100"
|
||
|
VIRTUAL_HOST: "{{ drone.domain }}"
|
||
|
LETSENCRYPT_HOST: "{{ drone.domain }}"
|
||
|
LETSENCRYPT_EMAIL: "{{ letsencrypt_email }}"
|