deploy: Add mailpit to test *sent* emails
All checks were successful
/ test (push) Successful in 2m49s

This commit is contained in:
lagertonne 2024-11-29 18:21:59 +01:00 committed by jedi
parent 3fb21d2258
commit 8137e3d8ed
3 changed files with 34 additions and 32 deletions

View file

@ -6,18 +6,12 @@ services:
command: bash -c 'python manage.py migrate && python testdata.py && python manage.py runserver 0.0.0.0:8000'
environment:
- HTTP_HOST=core
- DB_HOST=db
- DB_PORT=3306
- DB_NAME=system3
- DB_USER=system3
- DB_PASSWORD=system3
- DB_FILE=dev.db
volumes:
- ../../core:/code
- ../testdata.py:/code/testdata.py
ports:
- "8000:8000"
depends_on:
- db
frontend:
build:
@ -32,18 +26,3 @@ services:
- "8080:8080"
depends_on:
- core
db:
image: mariadb
environment:
MARIADB_RANDOM_ROOT_PASSWORD: true
MARIADB_DATABASE: system3
MARIADB_USER: system3
MARIADB_PASSWORD: system3
volumes:
- mariadb_data:/var/lib/mysql
ports:
- "3306:3306"
volumes:
mariadb_data: