symfony-base/docker-compose.traefik.yml
2023-02-21 21:46:08 +01:00

31 lines
1.2 KiB
YAML

# This must be done only once for every computer (it can be used for every web project, not only this one)
# 1. Launch WSL/Ubuntu
# 2. Go to your etuutt-api directory
# 3. Create traefik docker-compose : `mkdir -p ${HOME}/programmation/traefik && cp docker-compose.traefik.yml ${HOME}/programmation/traefik/docker-compose.yml && cd ${HOME}/programmation/traefik`
# 4. Create docker network for traefik to link all containers to it : `docker network create traefik`
# 5. Launch it : `cd ${HOME}/programmation/traefik && docker compose up -d`
# Thanks to the `restart: always` directive, traefik will launch every time docker launches, so no need to launch it by hand every time. It uses very few ram and cpu.
# If you still want to shut it down for good : `cd ${HOME}/programmation/traefik && docker compose down`
# To restart it : `cd ${HOME}/programmation/traefik && docker compose up -d`
version: '3'
services:
reverse-proxy:
image: traefik:v2.9
restart: always
networks:
- traefik
command:
- '--api.insecure=true'
- '--providers.docker'
ports:
- "80:80"
- "9081:8080" # UI
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
traefik:
external: true