Use the supplied docker-compose.yml
file and the .env
. I was able to find an existing image that still works
from a "verified publisher" on dockerhub.
Copy my .env example, and you will need to generate the app key using the following. You do not need to use the git repo at all for this.
You will need to generate the appkey variable for the .env file
echo "APP_KEY=base64:$(openssl rand -base64 32)" >> .env
will add something like this at the end of the file APP_KEY=base64:fDgkqO2LLA1qTQ7uEdvh0NHeNsAtCrBt5g183MGZZIw=
start the docker-compose, it will come up on https://localhost:8043/ note the SSL. once you go through the initial setup and create a user STOP. Bring down docker-compose and un-comment the volume for
- installed:/usr/share/nginx/html/installed
Then start the compose back and and you should be good to go. Do some testing because this was a rush job to get this going.