Run Mah in a Docker container using nginx. To use the official Mah image, see Docker Image.
Download the Dockerfile to your local machine. In the same directory, build and run the Docker container:
docker build -t mah .
docker run -d -p 8080:80 mahThen open http://localhost:8080.
Override the version at build time:
docker build --build-arg MAH_VERSION=1.19.0 -t mah .Change the port to your liking:
docker run -d -p 9090:80 mah