Open Bibelo opened 3 years ago
Not sure how helpful this is but I was able to get this to build by adding py3-gevent
to the apk add
in the db/Dockerfile
. I only started it for a few minuets and didn't really use it for production. I moved my setup the the omnibus package and just needed to get the docker version upgraded to the latest version. This did let it build and it came up and i could login but i didn't use it anymore than that before moving to the omnibus version.
diff --git a/db/Dockerfile b/db/Dockerfile
index d9aed44..51c64a1 100644
--- a/db/Dockerfile
+++ b/db/Dockerfile
@@ -1,4 +1,4 @@
-FROM postgres:10-alpine
+FROM postgres:13.3-alpine
ENV DEFAULT_TIMEZONE UTC
# Mandatory nowdays with PG 10
@@ -16,6 +16,7 @@ RUN apk add --no-cache \
py3-pip \
py-cryptography \
pv \
+ py3-gevent \
&& pip install --upgrade pip \
&& pip --no-cache-dir install -c pip-constraints.txt 'wal-e<1.0.0' envdir \
&& rm -rf /var/cache/apk/* /tmp/* /var/tmp/*
@rubberneck
In my case, I solved this issue by
RUN apk add py3-gevent
After compose up, I can't boot up the DB container normally.
Hello
When building the image for the last version of the DB container with the Dockerfile,
I have this error :
Please is this related to the disclaimer found on the front page of this GIT :
The current state of this repository doesn't work out-of-the box since Mattermost server v5.31+ requires PostgreSQL versions of 10 or higher.
In this case, when would that be solved?
Thank you!