14 lines
514 B
YAML
14 lines
514 B
YAML
version: "{{ compose_version }}"
|
|
|
|
services:
|
|
rest:
|
|
image: thomaspoignant/hello-world-rest-json
|
|
deploy:
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.{{ service }}.rule=Host(`kadet.local`) && PathPrefix(`/hello/`)
|
|
- traefik.http.services.{{ service }}.loadbalancer.server.port=8080
|
|
- traefik.http.routers.{{ service }}.middlewares={{ service }}-strip
|
|
- traefik.http.middlewares.{{ service }}-strip.stripprefix.prefixes=/hello/
|
|
networks: ['traefik']
|