-
Hi, I am having issues proceeding with installation. I am trying to get paperless-ng working on an amd64 server via docker-compose. I have downloaded the required files and even successfully got to step 6 outlined in setup. I have made some changes to the default configuration, such as using local volumes (rather than in the Here's the error in question:
I cut it short a little, but it basically tries the last 3 lines 4 more times and quits. Host OS: Ubuntu 20.04 LTS |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Update: It turns out that I encountered a very similar problem on another Docker project that also uses Postgres and narrowed down the error. Instead of specifying Apologies for this problem. |
Beta Was this translation helpful? Give feedback.
Update:
It turns out that I encountered a very similar problem on another Docker project that also uses Postgres and narrowed down the error. Instead of specifying
UID
andGID
as environment variables in the Postgres service, I had to useUser: $UID:$GID
instead.Apologies for this problem.