forked from Mirroring/github-release-notifier
27 lines
513 B
YAML
27 lines
513 B
YAML
version: '3'
|
|
|
|
services:
|
|
notifier:
|
|
build: .
|
|
image: github-release-notifier
|
|
container_name: github-release-notifier
|
|
volumes:
|
|
- ./conf.ini:/app/conf.ini
|
|
ports:
|
|
- 8000:80
|
|
|
|
mailpit:
|
|
image: axllent/mailpit
|
|
ports:
|
|
- 8025:8025
|
|
- 1025:1025
|
|
|
|
ofelia:
|
|
image: mcuadros/ofelia:latest
|
|
depends_on:
|
|
- notifier
|
|
command: daemon --config=/opt/config.ini
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- ./ofelia.ini:/opt/config.ini
|