grafana -> notification-provider -> mattermost | see https://gitlab.fedy95.com/dev/notification-provider
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
558 B
25 lines
558 B
---
|
|
version: "3.4"
|
|
|
|
services:
|
|
app:
|
|
image: gitlab-registry.fedy95.com:5002/dev/notification-provider:latest
|
|
restart: always
|
|
|
|
volumes:
|
|
- ./env/app/app.env:/var/www/localhost/.env
|
|
expose:
|
|
- "9000"
|
|
|
|
nginx:
|
|
image: nginx:1.21-alpine
|
|
restart: always
|
|
|
|
depends_on:
|
|
- app
|
|
volumes:
|
|
- ./app:/var/www/localhost
|
|
- ./devops/docker/nginx/etc/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf
|
|
ports:
|
|
- "8054:80"
|
|
...
|