-
I have tried to install Tracks several ways. I've managed to install it on my own linux box exactly one time. Ruby is very difficult. I have it running in a Turnkey appliance and it's great, but... I want to be able to access it from the cloud & can't becuse .. ISP. So I have a VPS i want to install it on. I'm following the instructions and can't get past the first step. This is what I get:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
There is indeed a bug in the Dockerfile, it expects to be wrunning in a Git repository and not a version archive. The easiest way to fix this is to remove the |
Beta Was this translation helpful? Give feedback.
There is indeed a bug in the Dockerfile, it expects to be wrunning in a Git repository and not a version archive. The easiest way to fix this is to remove the
COPY .git /app/.git
line from Dockerfile. Another option is to use a Git clone instead of a version archive by cloning the Git repository first withgit clone https://github.com/TracksApp/tracks.git
. I opened an issue #3028 for fixing this properly.