From fa14a9b8c4d3334f389d1845ca730ff3265c4cd1 Mon Sep 17 00:00:00 2001 From: Anna Viklund Date: Mon, 9 Feb 2026 09:22:01 +0100 Subject: [PATCH] docs: update README with build command --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f1a00b2a..8f194ca48 100644 --- a/README.md +++ b/README.md @@ -144,10 +144,14 @@ pip install -r requirements/local.txt #### Helpful Commands -##### Run the docker compose stack in the background +##### Run the Docker compose stack in the background docker compose up -d +##### Rebuild Docker images + + docker compose build + ##### Watch the logs of Django & the backend workers docker compose logs -f django celeryworker @@ -324,6 +328,7 @@ Antenna supports remote debugging with debugpy for both Django and Celery servic ### Troubleshooting +- **Problems after pull**: If Dockerfiles or dependencies have been updated, make sure to rebuild the Docker images: `docker compose build`. For source code changes, this is not needed. - **Connection refused**: Make sure you copied `docker-compose.override-example.yml` to `docker-compose.override.yml` - **Debugger not stopping**: Verify breakpoints are set in code that actually executes - **Port conflicts**: Check that ports 5678 and 5679 aren't already in use on your host machine