You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At Coolab we've been using Kolibri with a docker-compose nginx-proxy setup. Since there seems to be no official docker image I had to create my own.
Initially I was using this Dockerfile, using a python image. It did work, but Kolibri was really chewing CPU.
Now I'm trying to use kolibri-server as it seems to be more efficient. Here's the Dockerfile I'm trying:
FROM ubuntu:latest
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y software-properties-common dirmngr
RUN add-apt-repository ppa:learningequality/kolibri
RUN apt-get update -y
RUN apt-get install -y kolibri-server
USER kolibri
CMD ["kolibri", "start", "--foreground"]
It seems to install and run ok, but mapping port 8080 doesn't work. Here's the docker-compose.yml:
At Coolab we've been using Kolibri with a docker-compose nginx-proxy setup. Since there seems to be no official docker image I had to create my own.
Initially I was using this Dockerfile, using a
python
image. It did work, but Kolibri was really chewing CPU.Now I'm trying to use
kolibri-server
as it seems to be more efficient. Here's the Dockerfile I'm trying:It seems to install and run ok, but mapping port. Here's the8080
doesn't workdocker-compose.yml
:update: seems like the process is exiting. Full log here.
Am I missing something?
The text was updated successfully, but these errors were encountered: