forked from zauberzeug/nicegui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
31 lines (30 loc) · 1 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: "3.9"
services:
app:
build:
context: ./
dockerfile: development.dockerfile
ports:
- 80:8080
volumes:
- ./:/app
labels:
- traefik.http.routers.app.rule=PathPrefix(`/app`)
- traefik.http.services.app.loadbalancer.server.port=8080
- traefik.http.middlewares.app-prefix.stripprefix.prefixes=/app
- traefik.http.middlewares.app-prefix.stripprefix.forceSlash=false # see https://doc.traefik.io/traefik/middlewares/stripprefix/#forceslash
- traefik.http.routers.app.middlewares=app-prefix
# setup a proxy to test hosting on a sub-path; here localhost:8080/app
proxy:
image: traefik:v2.3
command:
- --providers.docker
- --api.insecure=true
- --accesslog # http access log
- --log #Traefik log, for configurations and errors
- --api # Enable the Dashboard and API
ports:
- "8888:80"
volumes:
# Traefik must be able to listen for Docker events
- /var/run/docker.sock:/var/run/docker.sock