Skip to content

Dockerize for development on any platform

David Watson requested to merge davidlwatsonjr/opl-data:docker-building into master

This is a proposal to add a Dockerfile that will build a ready-to-run instance of openpowerlifting on any Docker-friendly platform. This should help to greatly reduce ramp-up time and, potentially, increase developer participation.

To run the project in this manner, you simply need to build:

docker build -t opl .

and run:

docker run -p 8000:8000 opl

Access at http://localhost:8000/ per usual.

Merge request reports