94574e32ea
new file: authentication/Dockerfile new file: authentication/Makefile new file: authentication/__pycache__/main.cpython-313.pyc new file: authentication/database-migration/Dockerfile new file: authentication/database-migration/data.db new file: authentication/database-migration/db_migration.py new file: authentication/database-migration/migration.py new file: authentication/database-migration/requirements.txt new file: authentication/docker-compose.migration.yml new file: authentication/docker-compose.yml new file: authentication/main.py new file: authentication/requirements.txt
21 lines
544 B
YAML
21 lines
544 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
db:
|
|
image: postgres:15
|
|
environment:
|
|
- DB_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- /srv/data/db/services/authentication:/var/lib/postgresql/data
|
|
migration:
|
|
build: database-migration
|
|
image: python:3.11-slim
|
|
environment:
|
|
- DB_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
- db
|
|
command: python3 db_migration_test1.py |