new build structure

This commit is contained in:
2026-04-10 18:03:56 -05:00
parent be855415d5
commit 74c2c37835
3 changed files with 48 additions and 10 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
# /home/aknuth/git/config-email/docker-compose.yml
services:
config-email-frontend:
build: ./frontend
container_name: config-email-frontend
restart: unless-stopped
networks:
- bizmatch
config-email-backend:
build: ./backend
container_name: config-email-backend
restart: unless-stopped
env_file:
- ./backend/.env # Hier müssen deine AWS Keys und das TOKEN_SECRET rein!
environment:
- PORT=3001
networks:
- bizmatch
networks:
bizmatch:
external: true