mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-12 10:45:58 +00:00
15 lines
449 B
YAML
15 lines
449 B
YAML
version: "3"
|
|
services:
|
|
frontend:
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.frontend.rule=Host(`${HOSTNAME}`)"
|
|
- "traefik.http.routers.frontend.entrypoints=web"
|
|
- "traefik.http.services.frontend.loadbalancer.server.port=8000"
|
|
- "traefik.http.routers.frontend.tls=false"
|
|
volumes:
|
|
- "$PWD/dist:/project/api/dist"
|
|
- "$PWD/api/backend:/project/api/backend"
|
|
ports:
|
|
- "8000:8000"
|