Skip to content
Snippets Groups Projects
Commit 879793fe authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Merge branch 'fix_schema_migrations' into '2.8.2-DEVELOPMENT'

update schema migration containers for 2.8.2 changes

See merge request !1407
parents 81d07338 8318ba58
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1407update schema migration containers for 2.8.2 changes
Pipeline #10526 passed
......@@ -97,11 +97,11 @@ services:
# Run the command `docker compose -f docker-compose.local.yml --profile schema-dev up schema-dev` and the migration will run
schema-dev:
build:
context: ./shared/workspaces/alembic/
dockerfile: Dockerfile.local
context: .
dockerfile: ./shared/workspaces/alembic/Dockerfile.local
command: ["./bin/run-migrations.sh", "dsoc-dev"]
volumes:
- ./shared/workspaces/alembic:/code/shared/workspaces/alembic
- ./shared:/code/shared
- ~/.capo:/home/ssa/capo
profiles:
- schema-dev
......@@ -110,11 +110,11 @@ services:
# Run the command `docker compose -f docker-compose.local.yml --profile schema-test up schema-test` and the migration will run
schema-test:
build:
context: ./shared/workspaces/alembic/
dockerfile: Dockerfile.local
context: .
dockerfile: ./shared/workspaces/alembic/Dockerfile.local
command: ["./bin/run-migrations.sh", "dsoc-test"]
volumes:
- ./shared/workspaces/alembic:/code/shared/workspaces/alembic
- ./shared:/code/shared
- ~/.capo:/home/ssa/capo
profiles:
- schema-test
......@@ -123,11 +123,11 @@ services:
# Run the command `docker compose -f docker-compose.local.yml --profile schema-prod up schema-prod` and the migration will run
schema-prod:
build:
context: ./shared/workspaces/alembic/
dockerfile: Dockerfile.local
context: .
dockerfile: ./shared/workspaces/alembic/Dockerfile.local
command: ["./bin/run-migrations.sh", "dsoc-prod"]
volumes:
- ./shared/workspaces/alembic:/code/shared/workspaces/alembic
- ./shared:/code/shared
- ~/.capo:/home/ssa/capo
profiles:
- schema-prod
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment