Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improved migrations #426

Merged
merged 10 commits into from
Feb 10, 2025
9 changes: 6 additions & 3 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Stage 1: Build dependencies
FROM python:3.12.1-alpine3.19

ADD requirements.txt /app/requirements.txt
ADD constraints.txt /app/constraints.txt

ENV PIP_CONSTRAINT=/app/constraints.txt

# If set to true the Django database migrations needs be run externally
ENV EXTERNAL_MIGRATION=false

RUN set -ex \
&& apk add --no-cache --virtual .build-deps postgresql-dev build-base gcc musl-dev jpeg-dev zlib-dev libffi-dev cairo-dev pango-dev gdk-pixbuf-dev mariadb-dev python3-dev \
&& apk add --no-cache --virtual .build-deps postgresql-dev build-base gcc musl-dev jpeg-dev zlib-dev libffi-dev cairo-dev pango-dev gdk-pixbuf-dev mariadb-dev python3-dev \
&& python -m venv /env \
&& /env/bin/pip install --upgrade pip \
&& /env/bin/pip install --no-cache-dir -r /app/requirements.txt \
Expand All @@ -23,11 +25,12 @@ RUN apk add --no-cache curl
RUN addgroup -S app && adduser -S app -G app
ADD . /app
WORKDIR /app
RUN chmod 555 /app/scripts/*
RUN chown -R app:app /app
USER app

ENV VIRTUAL_ENV /env
ENV PATH /env/bin:$PATH

EXPOSE 8000
CMD ["sh", "-c", "python manage.py migrate && gunicorn -b '[::]:8000' --workers 3 backend.wsgi:application"]
CMD ["/app/scripts/start.sh"]
13 changes: 13 additions & 0 deletions backend/scripts/start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh
set -e

echo "Checking migration configuration..."
if [ "$EXTERNAL_MIGRATION" = "true" ]; then
echo "EXTERNAL_MIGRATION flag is set to true. Skipping migrations as they will be handled externally."
else
echo "EXTERNAL_MIGRATION flag is not set. Running migrations locally..."
python manage.py migrate
fi

echo "Starting gunicorn server..."
exec gunicorn -b '[::]:8000' --workers 3 backend.wsgi:application
30 changes: 27 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,30 @@ services:
networks:
- phase-net

migrations:
container_name: phase-migrations
image: phasehq/backend:latest
command: python manage.py migrate
env_file: .env
environment:
OAUTH_REDIRECT_URI: "${HTTP_PROTOCOL}${HOST}"
ALLOWED_HOSTS: "${HOST},backend"
ALLOWED_ORIGINS: "${HTTP_PROTOCOL}${HOST}"
SESSION_COOKIE_DOMAIN: "${HOST}"
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_started
networks:
- phase-net

backend:
container_name: phase-backend
restart: unless-stopped
depends_on:
migrations:
condition: service_completed_successfully
postgres:
condition: service_healthy
redis:
Expand All @@ -46,15 +66,20 @@ services:
ALLOWED_HOSTS: "${HOST},backend"
ALLOWED_ORIGINS: "${HTTP_PROTOCOL}${HOST}"
SESSION_COOKIE_DOMAIN: "${HOST}"
EXTERNAL_MIGRATION: "true"
networks:
- phase-net

worker:
container_name: phase-worker
restart: unless-stopped
depends_on:
- postgres
- redis
migrations:
condition: service_completed_successfully
postgres:
condition: service_healthy
redis:
condition: service_started
image: phasehq/backend:latest
command: python manage.py rqworker default
env_file: .env
Expand All @@ -76,7 +101,6 @@ services:
POSTGRES_USER: ${DATABASE_USER}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
POSTGRES_HOST_AUTH_METHOD: "trust"

volumes:
- phase-postgres-data:/var/lib/postgresql/data
networks:
Expand Down
33 changes: 29 additions & 4 deletions staging-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
nginx:
container_name: phase-nginx-dev
Expand Down Expand Up @@ -36,10 +34,32 @@ services:
networks:
- phase-net-dev

migrations:
container_name: phase-migrations-staging
build:
context: ./backend
dockerfile: Dockerfile
command: python manage.py migrate
env_file: .env
environment:
ALLOWED_HOSTS: "${HOST},backend"
ALLOWED_ORIGINS: "${HTTP_PROTOCOL}${HOST}"
SESSION_COOKIE_DOMAIN: "${HOST}"
OAUTH_REDIRECT_URI: "${HTTP_PROTOCOL}${HOST}"
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_started
networks:
- phase-net-dev

backend:
container_name: phase-backend-staging
restart: unless-stopped
depends_on:
migrations:
condition: service_completed_successfully
postgres:
condition: service_healthy
redis:
Expand All @@ -53,15 +73,20 @@ services:
ALLOWED_ORIGINS: "${HTTP_PROTOCOL}${HOST}"
SESSION_COOKIE_DOMAIN: "${HOST}"
OAUTH_REDIRECT_URI: "${HTTP_PROTOCOL}${HOST}"
EXTERNAL_MIGRATION: "true"
networks:
- phase-net-dev

worker:
container_name: phase-worker-staging
restart: unless-stopped
depends_on:
- postgres
- redis
migrations:
condition: service_completed_successfully
postgres:
condition: service_healthy
redis:
condition: service_started
build:
context: ./backend
dockerfile: Dockerfile
Expand Down