Automating Rclone with Docker

Hi All, i’m currently in the process of migrating my lxc rclone instance to multiple rclone docker instances. I’m trying to figure out the best method to do this and found this amazing docker image that seems to do everything I need. The problem i’m having is that the GET requests are not working. I’m following the instructions I thought to the T but not getting anywhere. I also run the curl command on the actual box to local host 8080 to no avail. I don’t have much experience with GET requests.

~ curl -i 192.168.1.200:7000
HTTP/1.1 404 Not Found
X-Powered-By: Express
Content-Security-Policy: default-src 'self'
X-Content-Type-Options: nosniff
Content-Type: text/html; charset=utf-8
Content-Length: 139
Date: Sat, 12 Jan 2019 20:27:16 GMT
Connection: keep-alive

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot GET /</pre>
</body>
</html>

The docker container is setup as follows:

docker create
–name=rclone.backup.
-p 7000:8080
-v /source:/source_folder
-v /configfile:/config
-v /logfolder:/logs
-e SYNC_COMMAND=“rclone --transfers=1 --bwlimit 1.5M copy /source_folder Crypt:backup --dry-run -v --stats 5s --log-file /logs/rclone_Gdrive.log”
that1guy/docker-rclone