I opened the same ticker in OpenSlides/OpenSlides #4208. There @tsiegleauq commented, I should address to this project. IMHO that's wrong, because I don't use your Dockerfile and I think the problem is absolutely not related to docker. But anyway, I follow his recommendation, here is my problem:
I try to run OpenSlides 2.3 (the current stable release) in docker.
Dockerfile:
FROM mwaeckerlin/base
ENV VERSION "2.3"
ENV SOURCE "https://files.openslides.org/releases/${VERSION}/openslides-${VERSION}.tar.gz"
RUN apk add --no-cache --purge --clean-protected -u python3 python3-dev gcc libc-dev
WORKDIR /tmp
RUN wget -qO- $SOURCE | tar xz
WORKDIR /tmp/openslides-${VERSION}
RUN python3 setup.py install
USER ${RUN_USER}
CMD openslides start --local-installation
EXPOSE 8000
I opened the same ticker in OpenSlides/OpenSlides #4208. There @tsiegleauq commented, I should address to this project. IMHO that's wrong, because I don't use your Dockerfile and I think the problem is absolutely not related to docker. But anyway, I follow his recommendation, here is my problem:
I try to run OpenSlides 2.3 (the current stable release) in docker.
Dockerfile
:Compile it and run:
So basically, the installation is as follows:
python3
,python3-dev
,gcc
andlibc-dev
python3 setup.py install
openslides start --local-installation
admin
, password:admin
Then you always get the error message:
Offline mode: You can use OpenSlides but changes are not saved.
What's the problem?