We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4453699 commit d8cf89bCopy full SHA for d8cf89b
1 file changed
.github/workflows/preview.yml
@@ -46,9 +46,9 @@ jobs:
46
sed "s|^DATABASE_URL=.*|DATABASE_URL=postgresql://postgres:$(grep POSTGRES_PASSWORD /opt/platform/.env | cut -d= -f2)@postgres:5432/${APP_DB}?options=-csearch_path%3D${SCHEMA_NAME}|" \
47
deploy/.env > deploy/.env.pr-${PR_NUMBER}
48
49
- # Build and start preview containers
+ # Build and start the app container (skip optional services like celery-worker)
50
docker compose -p ${APP_NAME}-pr-${PR_NUMBER} -f deploy/docker-compose.yml \
51
- --env-file deploy/.env.pr-${PR_NUMBER} up -d --build
+ --env-file deploy/.env.pr-${PR_NUMBER} up -d --build app
52
53
# Run database migrations against the preview schema
54
0 commit comments