28 lines
546 B
YAML
28 lines
546 B
YAML
version: '3'
|
|
services:
|
|
gitea-webhooks:
|
|
container_name: gitea-webhooks
|
|
build: .
|
|
restart: always
|
|
ports:
|
|
- '127.0.0.1:3002:80'
|
|
environment:
|
|
- SMTP_HOST=
|
|
- SMTP_PORT=
|
|
- SMTP_FROM=
|
|
- SMTP_USER=
|
|
- SMTP_PASSWORD=
|
|
- SMTP_ENCRYPTION=
|
|
- SECRET_KEY=
|
|
- RECIPIENTS_PR=
|
|
labels:
|
|
- "traefik.frontend.rule=Host:webhooks.chaospott.de"
|
|
- "traefik.port=3002"
|
|
- "traefik.docker.network=web"
|
|
networks:
|
|
extern:
|
|
networks:
|
|
extern:
|
|
external:
|
|
name: web
|