diff options
author | 2024-08-24 23:36:38 +0100 | |
---|---|---|
committer | 2024-08-24 23:36:38 +0100 | |
commit | 0018d616e87bf3aaac8aad562cc6f3030adfe0a7 (patch) | |
tree | 3ae2c37a3b3ae00a61312be90af0099e1a43fd87 /docker-compose.yml | |
parent | Add a new permission for updating templates from printful (diff) |
Mount db migrations as a volume in dev
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 050c570..f92f006 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,6 +22,7 @@ services: restart: unless-stopped command: ["alembic upgrade head && uvicorn src.app:fastapi_app --host 0.0.0.0 --port 8000 --reload --no-server-header"] volumes: + - ./thallium-backend/migrations:/thallium/migrations:ro - ./thallium-backend/src:/thallium/src:ro env_file: - .env |