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.
 
 
 
 

27 lines
598 B

---
version: "3.4"
services:
app:
image: registry.fedy95.com/dev-notification-provider:latest
restart: unless-stopped
env_file:
- env/app/app.env
environment:
COMPOSER_MEMORY_LIMIT: "-1"
expose:
- "9000"
nginx:
image: nginx:1.21-alpine
restart: unless-stopped
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"
...