You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
#docker-compose.yml
version: "3"
services:
traefik:
image: traefik:alpine
labels:
- traefik.enable=true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "6060:80"
- "6080:8080"
nginx:
image: nginx:alpine
labels:
- traefik.enable=true
apache:
image: httpd:alpine
labels:
- traefik.enable=true
tomcat:
image: tomcat:alpine
labels:
- traefik.enable=true
mysqldb:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD="root"
traefik.toml
defaultEntryPoints = ["http"]
loglevel = "INFO"
sendAnonymousUsage = true
[docker]
endpoint = "unix:///var/run/docker.sock"
exposedByDefault = false
[api]
dashboard = true
entrypoint = "dashboard"
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.dashboard]
address = ":8080"
if i try http://localhost:6080
The text was updated successfully, but these errors were encountered: