Files
projet-tlc/ansible/files/dockercompose/docker-compose.yml
2026-02-14 16:59:52 +01:00

130 lines
3.4 KiB
YAML

services:
#https://dev.to/rafi021/how-to-set-up-a-monitoring-stack-with-prometheus-grafana-and-node-exporter-using-docker-compose-17cc
#https://belginux.com/monitoring-docker-grafana-prometheus-cadvisor/
#https://github.com/Einsteinish/Docker-Compose-Prometheus-and-Grafana/tree/master
# prometheus:
# image: prom/prometheus:latest
# container_name: prometheus
# restart: unless-stopped
# ports:
# - "9090:9090"
# volumes:
# - ../prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
# command:
# - "--config.file=/etc/prometheus/prometheus.yml"
# depends_on:
# - back
# - db
# networks:
# - app-network
# grafana:
# build:
# context: ..
# dockerfile: dockerfiles/grafana/Dockerfile
# container_name: grafana
# restart: unless-stopped
# volumes:
# - grafana-data:/var/lib/grafana
# - ../grafana/provisioning:/etc/grafana/provisioning
# depends_on:
# - prometheus
# environment:
# - GF_SECURITY_ADMIN_USER=tlc
# - GF_SECURITY_ADMIN_PASSWORD=tlc
# networks:
# - app-network
# https://stackoverflow.com/questions/57591868/how-correctly-install-ssl-certificate-using-certbot-in-docker
# certbot:
# image: certbot/certbot:latest
# container_name: certbot
# depends_on:
# - front
# volumes:
# - ../certbot/www/:/var/www/certbot/:rw
# - ../certbot/conf/:/etc/letsencrypt/:rw
front:
build:
context: ..
dockerfile: dockerfiles/front/Dockerfile
ports:
- "80:80"
volumes:
- ../doodlestudent/front:/app
- ../certbot/www:/var/www/certbot:ro
- ../certbot/conf:/etc/letsencrypt:ro
environment:
- FLASK_ENV=development
depends_on:
- back
- db
- etherpad
- mail
networks:
- app-network
back:
image : benarbause/doodleback-with-quarkus:latest
ports:
- "8080:8080"
volumes:
- ../doodlestudent/api:/app
depends_on:
db:
condition: service_healthy
etherpad:
condition: service_healthy
networks:
- app-network
restart:
unless-stopped
db:
image: mysql
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=tlc
- MYSQL_USER=tlc
- MYSQL_PASSWORD=tlc
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-proot"]
interval: 10s
timeout: 1m
retries: 5
networks:
- app-network
etherpad:
image: etherpad/etherpad:1.9.7
ports:
- "9001:9001"
volumes:
- ../doodlestudent/api/APIKEY.txt:/opt/etherpad-lite/APIKEY.txt
networks:
- app-network
healthcheck:
test: ["CMD-SHELL", "node -e \"require('http').get('http://127.0.0.1:9001', res => { process.exit(res.statusCode===200?0:1) }).on('error', ()=>process.exit(1))\""]
interval: 30s
timeout: 10s
start_period: 15s
retries: 5
mail:
image: bytemark/smtp
restart: always
ports:
- "2525:25"
networks:
- app-network
networks: # Declare the network to be used by the services
app-network: # Is a user-defined network
#external: false # If true, Docker Compose will look for an existing network with the same name and use it. If false or not specified, Docker Compose will create a new network.
name: app-network #Name of the network (optional, Docker Compose will generate one if not provided)