Docker container for setting up Ianseo server (http://ianseo.net/)
Start Ianseo server in the Docker container:
docker run -d -p 80:80 -p 3306:3306 mikkhola/ianseo
Now you can access Ianseo server with your web browser from http://localhost. Ianseo asks settings for the database when you start it first time. You can use default settings, just click next.
To create a new image, execute the following command:
docker build -t mikkhola/ianseo .
An example how to connect to the running Docker container:
docker exec -i -t $(docker ps | grep ianseo | cut -d " " -f1) /bin/bash
Logs from the running container can be shown with this command:
docker logs $(docker ps | grep ianseo | cut -d " " -f1)
Container is based on https://github.com/tutumcloud/lamp, there you can find more information how to access MySQL database etc.