Rclone for CasaOS if possible with GUI tag

Hi! Rclone is an amazing tool for sync files trough your NAS and Clouds (And now INCLUDES PROTON Drive!)

It will be amazing if BigBear brings it since the other “Rclones” services that are out there cost hundreds of dollars, meanwhile this one is completely opensource and free.

Plus no other CasaOS store haves it.

Hello,

Rclone is a cli tool. Could you explain your intention more?

Rclone haves already a GUI made by them that you can access with a tag

I already installed it trough portainer (ill drop the compose below with a picture)

version: '3'
services:
  rclone:
    image: rclone/rclone
    container_name: rclone
    restart: always
    command: 
      - rcd
      - --rc-web-gui
      - --rc-addr
      - :5572
      - --rc-user
      - YOURUSERNAME
      - --rc-pass
      - YOURPASSWORD
    ports:
      - "5572:5572"
    volumes:
      - /DATA/AppData/rclone:/config/rclone
      - /DATA/AppData/rclone:/logs
    environment:
      PHP_TZ: Europe/London
      PUID: 1000
      PGID: 1000

I’ve tried the UI before and it was buggy and not great. Maybe it’s improved allot. Are you wanting to make a Pull Request to BigBearCasaOS?