gitea_webhooks/docker-compose.yml

27 lines
553 B
YAML
Raw Normal View History

2021-01-12 21:53:49 +00:00
version: '3'
services:
2021-01-12 22:02:43 +00:00
gitea-webhooks:
2021-01-12 21:53:49 +00:00
container_name: gitea-webhooks
build: .
restart: always
environment:
- SMTP_HOST=
- SMTP_PORT=
- SMTP_FROM=
- SMTP_USER=
- SMTP_PASSWORD=
- SMTP_ENCRYPTION=
- SECRET_KEY=
- RECIPIENTS_PR=
2021-01-12 23:03:32 +00:00
- DOMAIN_NAME=webhooks.chaospott.de
2021-01-12 21:53:49 +00:00
labels:
2021-01-12 23:03:32 +00:00
- traefik.enable=true
- traefik.frontend.rule=Host:webhooks.chaospott.de
- traefik.port=80
- traefik.docker.network=web
2021-01-12 21:53:49 +00:00
networks:
2021-01-12 23:03:32 +00:00
- web
2021-01-12 21:53:49 +00:00
networks:
2021-01-12 23:03:32 +00:00
web:
external: true