diff --git a/.gitignore b/.gitignore index 738528c..ff5e949 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ venv/ .venv/ __pycache__/ *.pyc -/dist/ \ No newline at end of file +/dist/ +docker-compose.yml diff --git a/README.md b/README.md index eb4a6c1..848efbc 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,19 @@ wikimore 4. Open your browser and navigate to `http://localhost:8109` +## Docker + +For your convenience, we also provide a Docker image. Note however that this is _not_ the recommended way to run Wikimore. + +You can use the bundled `docker-compose-example.yml` file to run Wikimore with Docker Compose. + +```bash +cp docker-compose-example.yml docker-compose.yml +docker-compose up -d +``` + +This will start a container with Wikimore on port 8109. You can change the port in your `docker-compose.yml` file. + ## Development 1. Clone the repository