How to set up RClone WebGUI server as a Docker Container

I'm still fixing a thing or two.
Currently I can mount within the gui. I had to fix the docker compose though.. (follows below) and to start it, i did with docker-compose instead of docker stack deploy because otherwise fuse wont work.
I can definitely see the content of my remote drive within the container (I attached into the container with docker exec) but the content is not available outside it. I still have to figure out why.

version: '3.2'

services:
rclone:
image: rclone/rclone
restart: always
cap_add:
- SYS_ADMIN
- SETPCAP
- MKNOD
devices:
- /dev/fuse:/dev/fuse
command: rcd --rc-web-gui --rc-addr :5572 --rc-user pi --rc-pass 'XXXXXXXX'
ports:
- 5572:5572
volumes:
- /home/pi/services/rclone/data:/data
- /home/pi/services/rclone/config:/config/rclone
- /home/pi/services/rclone/logs:/logs
- /etc/passwd:/etc/passwd:ro
- /etc/group:/etc/group:ro
environment:
- PHP_TZ=Europe/London
- PUID=1000
- PGID=1000
deploy:
mode: global
placement:
constraints: [node.platform.os == linux]