Files
projet-tlc/ansible/files/dockercompose/docker-compose.yml
Alexandre Chevalier 2291a85b79 deploiement sur VM
2026-02-13 23:37:08 +01:00

96 lines
2.4 KiB
YAML

services:
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
# 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
back:
build:
context: ..
dockerfile: dockerfiles/back/Dockerfile
ports:
- "8080:8080"
volumes:
- ../doodlestudent/api:/app
environment:
- FLASK_ENV=development
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)