docker container webservices as individual subpaths

i deployed traefik sucessfully on a vps running docker services. i was able to make the main service 'organizr' redirect through trafik on <organizr.my.simplydoesitvw.com>.

i now want to attach other services to this domain as subpath eg organizr.my.simplydoesitvw.com/syncthing

i put this in my docker compose under the container:

Blockquote
labels:
- "traefik.enable=true"
- "traefik.http.routers.syncthing.rule=Host(organizr.my.simplydoesitvw.com) && Path(/syncthing)"
- "traefik.http.routers.syncthing.middlewares=syncthing-stripprefix"
- "traefik.http.middlewares.syncthing-stripprefix.stripprefix.prefixes=/syncthing"
- "traefik.http.routers.syncthing.entrypoints=http"