init commit

This commit is contained in:
2026-03-04 09:52:43 +02:00
commit 88ced77b23
8 changed files with 331 additions and 0 deletions

28
docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
version: "3.9"
networks:
reverse-proxy:
external: true
volumes:
mailform_db:
mailform_assets:
services:
mailform-app:
build: .
container_name: mailform-aquila
restart: unless-stopped
environment:
- TZ=Europe/Bucharest
- VIRTUAL_HOST=mailform.northdanubesoft.eu
- VIRTUAL_PORT=5000
- LETSENCRYPT_HOST=mailform.northdanubesoft.eu
- LETSENCRYPT_EMAIL=macamete.robert@gmail.com
expose:
- "5000"
volumes:
- mailform_db:/app/data
- mailform_assets:/app/static
networks:
- reverse-proxy