Content
You are here:
Basic installation testing
Added by Gildas Bayard about 2 years ago
Hello,
Sorry to post such a basic question but I have followed the recommanded installation instructions:
git clone https://github.com/opf/openproject-deploy --depth=1 --branch=stable/12 openproject
cd openproject/compose
docker-compose pull
docker-compose up -d
I ckeck with docker logs that the containers get up without problem and then check if openproject is available
The site redirects to the https version, as expected, and then fails with
OpenSSL: error:0A00010B:SSL routines::wrong version number
Unable to establish SSL connection.
Then I tried to disable HTTPS, just to try to get to the openproject homepage, by adding in .env
OPENPROJECT_HTTPS=false
OPENPROJECT_HSTS=false
But there's no change...
Any idea?
Replies (2)
Hi Gildas,
there's been recent changes to provide an easier way to make docker-compose available on HTTP without forcing SSL.
Please check you're on the latest commit of stable/12 (ba8caec) and start docker-compose like this:
or by adding it to the
.env
to have it picked up. Please note that you also need a rather recent docker-compose, as I've experienced problems passing variables into containers with for example, docker-compose version 1.25.Hi Oliver,
I don't think it is a problem of not transmitting the environment variable, since I successfully changed the port using PORT= in .env with success. Actually I tried
with no luck.
My docker-compose is version 1.29.2.
Any other idea?