Develop with Docker
Python and PostgreSQL versions
Currently, the Docker confguration uses Python version 3.13
and PostgreSQL version 17
(or the latest patch version of each).
Database Version Changes
At times we will update the Docker configurations to use a newer version of PostgreSQL. Often, the newer version will be incompatible with the existing database, and you will need to create a new database or migrate the data.
For example between releases 0.5.4
and 0.6.0
I updated the docker config to use PostgreSQL 17 instead of 15. In this case the existing database was not compatible.
You have 3 options in this case:
- delete the docker volume
api-db-data
and just start again. This is fine if you are only using docker for testing. - change the
docker-compose.yml
to use the previous version of PostgreSQL instead. In the case of0.6.0
you can change back to15.6-bullseye
. This is on line 25 (as of version0.6.0
anyway). - log into the docker instance and migrate the data to version 17. There are several guides for this if you search.
Run a Server
Docker containers can be used for testing the API during development just make sure that Docker is installed and you can use the built-in docker compose file:
docker compose up
This will by default run the server on http://localhost:8001, and reload after any change to the source code.
Port Change from 8000
to 8001
The default API port while running under Docker is 8001
to avoid conflicts with any other services you may have running or even a local session of this API. If you want to change this, you can do so by editing the Dockerfile
and docker-compose.yml
files.
If you need more control, you can run uvicorn
directly :
docker compose run --rm --service-ports api uvicorn --host 0.0.0.0 --port 8001 app.main:app --reload
The above command starts the server running on http://localhost:8001, and it will automatically reload when it detects any changes as you develop.
Note: Neither of these are suitable to host a project in production, see the Deployment section for information.
This compose file will also start a PostgreSQL
database container and a Redis
container. The PostgreSQL database port is exposed on 5433
and the default username and password are those set in your .env
file.
The Redis
container also contains the RedisInsight
web interface, which can be accessed at http://localhost:8002 for easy Redis database management.
Note
The Redis server is not currently used, but will be shortly when I add caching and rate-limiting.
Updating Dependencies
Every time a new dependency is installed a new image must be built:
docker compose build
Database Administration
At this time, the CLI tool is not available in the Docker container, so you will need to use an external tool such as pgAdmin4
to manage the database. Note that the database is exposed on port 5433
and the default username and password are those set in your .env
file.
In the future I will try to get the api-admin
tool working inside the Docker container. The issue is getting this to work without destroying my local .venv
folder.
Run Tests
This API contains Unit and Integration tests using 'Pytest'
To run these from within the Docker container use the pytest
command with docker compose
:
$ docker compose run --rm api pytest
Test session starts (platform: linux, Python 3.11.3, pytest 7.3.1, pytest-sugar 0.9.7)
Using --randomly-seed=2090593217
...
tests/integration/test_protected_user_routes.py ✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓
tests/integration/test_user_routes.py ✓✓✓✓✓✓✓✓✓✓✓✓✓✓
...
------------------------------------------------------------
TOTAL 518 10 98%
Coverage HTML written to dir htmlcov
Results (36.04s):
157 passed
4 skipped
if you wish to disable the coverage display temporarily use:
$ docker compose run --rm api pytest --no-cov
You can also run the Unit or Integration tests independently using docker compose run --rm api pytest -m unit
or docker compose run --rm api pytest -m integration
.
See the Pytest how-tos for more information