Docker container for Unmark.
- Install Docker Compose
- Run
git clone --recursive https://github.com/gameame/docker-unmark
- Run
cd docker-unmark && docker-compose up
- Go to
http://localhost:5001/setup
to finish setup
If you run Unmark container behing Nginx, be sure to set Host header, otherwise registration/login won't work:
server {
# ...
location / {
proxy_pass http://localhost:5001;
proxy_set_header Host $host;
}
# ...
}