A Dockerfile for building a Docker image with Mooshak!
Mooshak is a system for managing programming contests on the Web. Mooshak's basic features include automatic judging of submitted programs, answering to clarification questions about problem descriptions, reevaluation of programs, tracking printouts, among many others.
- docker
- docker-compose (optional)
docker compose up -d
OR
docker-compose up -d
# Build Image
docker build . -t mooshak
# Run Image (container)
docker run --rm -it \
-p ${HTTP_PORT}:80 \
-v ${MOOSHAK_DATA_VOLUME}:/home/mooshak \
-v ${APACHE2_DATA_VOLUME}:/etc/apache2 \
mooshak:latest
docker exec -it <container> bash
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (git checkout -b feature/AmazingFeature)
- Commit your Changes (git commit -m 'Add some AmazingFeature') Push to the Branch (git push origin feature/AmazingFeature)
- Open a Pull Request
This project is distributed under the MIT License.