Files
notification/template/docker-compose.yml

27 lines
649 B
YAML

networks:
lamenu:
external: true
name: lamenu
volumes:
pycache: null
services:
app:
labels:
- "traefik.enable=true"
- "traefik.http.routers.order.rule=PathPrefix(`/order`)"
- "traefik.http.routers.order.entrypoints=web"
- "traefik.http.services.order.loadbalancer.server.port=80"
# - "traefik.http.middlewares.order-strip-prefix.stripPrefix.prefixes=/order"
# - "traefik.http.routers.order.middlewares=order-strip-prefix"
build:
dockerfile: Dockerfile
context: .
networks:
- lamenu
restart: always
volumes:
- ./:/code
- pycache:/var/cache/pycache