chore: config ok
This commit is contained in:
parent
ec421605d7
commit
adcbe45f48
@ -1,42 +1,24 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
traefik:
|
||||
image: traefik:latest
|
||||
container_name: "traefik"
|
||||
restart: always
|
||||
reverse-proxy:
|
||||
# The official v3 Traefik docker image
|
||||
image: traefik:v3.0
|
||||
# Enables the web UI and tells Traefik to listen to docker
|
||||
command: --api.insecure=true --providers.docker
|
||||
ports:
|
||||
# The HTTP port
|
||||
- "8888:80"
|
||||
- "8443:443"
|
||||
networks:
|
||||
- web
|
||||
- default
|
||||
#env_file:
|
||||
# - './conf/.ovh-api.env'
|
||||
# The Web UI (enabled by --api.insecure=true)
|
||||
- "8088:8080"
|
||||
volumes:
|
||||
# Mapping sur le socket interne de Docker
|
||||
- '/var/run/docker.sock:/var/run/docker.sock'
|
||||
# Mapping du fichier de configuration statique
|
||||
- '/volume1/docker/traefik/conf/traefik.yml:/etc/traefik/traefik.yml'
|
||||
# Mapping du dossier contenant la configuration dynamique
|
||||
#- './conf/dyn_traefik/:/dyn_traefik/'
|
||||
# Mapping du fichier de stockage des certificats
|
||||
#- './conf/acme.json:/acme.json'
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.api.rule=Path(/api) "
|
||||
- "traefik.http.routers.api.service=api@internal"
|
||||
#- "traefik.http.routers.api.middlewares=auth"
|
||||
#- "traefik.http.middlewares.auth.basicauth.users=test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/,test2:$$apr1$$d9hr9HBB$$4HxwgUir3HP4EsggP/QNo0"
|
||||
- /volume1/docker/traefik/conf/traefik.yml:/etc/traefik/traefik.yml
|
||||
# So that Traefik can listen to the Docker events
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
|
||||
whoami:
|
||||
# A container that exposes an API to show its IP address
|
||||
image: traefik/whoami
|
||||
labels:
|
||||
- "traefik.http.routers.whoami.rule=Host(`whoami.docker.localhost`)"
|
||||
|
||||
|
||||
networks:
|
||||
web:
|
||||
external: true
|
||||
- "traefik.http.routers.whoami.rule=path(`/whoami`)"
|
||||
|
@ -2,10 +2,10 @@
|
||||
entryPoints:
|
||||
web:
|
||||
address: ":80"
|
||||
asDefault: true
|
||||
#asDefault: truxe
|
||||
|
||||
websecure:
|
||||
address: ":443"
|
||||
# websecure:
|
||||
# address: ":443"
|
||||
# http:
|
||||
# redirections:
|
||||
# entryPoint:
|
||||
@ -22,7 +22,7 @@ log:
|
||||
api:
|
||||
insecure: true
|
||||
dashboard: true
|
||||
entryPoint: "websecure"
|
||||
# entryPoint: "web"
|
||||
|
||||
# docker:
|
||||
# endpoint: "unix:///var/run/docker.sock"
|
||||
|
Loading…
Reference in New Issue
Block a user