WebUI with docker compose

What is the problem you are having with rclone?

I'm running rclone web ui through docker use this as my template. The first time it run, I can open remote once, then I'm having some trouble as you can see below.
chrome_kdEKdBXrxy
But I tried the command below on host, it run fine, unlike when I run it with docker. Is there anything that I miss in docker compose?

docker-compose.yml

This file is in rclone dir

version: '3.3'
services:
  rclone_rclone:
    build:
      dockerfile: Dockerfile
      context: .
    container_name: rclone_rclone
    restart: always
    command: rcd --rc-web-gui --rc-addr :5572 --rc-user decoyer --rc-pass decoyer154877
    ports:
      - "5572:5572"
    volumes:
      - /docker/appdata/rclone:/config/rclone
      - /docker/appdata/rclone:/logs
      - type: bind
        source: "/media/ser3_decoyer/TOSHIBA"
        target: "/external1"
        read_only: true
    environment:
      - PHP_TZ=Europe/London
      - PUID=1000
      - PGID=1000

Run the command 'rclone version' and share the full output of the command.

I build straight from github

Which cloud storage system are you using? (eg Google Drive)

All

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone rcd --rc-web-gui --rc-addr :5572 --rc-user user --rc-pass pass

The rclone config contents with secrets removed.

N/A

A log from the command with the -vv flag

2023/10/08 07:23:28 ERROR : rc: "operations/list": error: error in ListJSON: unknown object type <nil>
2023/10/08 07:23:30 ERROR : : error listing: unknown object type <nil>
2023/10/08 07:23:30 ERROR : rc: "operations/list": error: error in ListJSON: unknown object type <nil>
2023/10/08 07:23:30 ERROR : : error listing: unknown object type <nil>
2023/10/08 07:23:30 ERROR : rc: "operations/list": error: error in ListJSON: unknown object type <nil>
2023/10/08 07:23:55 ERROR : : error listing: unknown object type <nil>
2023/10/08 07:23:55 ERROR : rc: "operations/list": error: error in ListJSON: unknown object type <nil>
2023/10/08 07:26:58 ERROR : rc: "operations/list": error: didn't find section in config file
2023/10/08 07:27:01 ERROR : : error listing: directory not found

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.