24 lines
527 B
YAML
24 lines
527 B
YAML
# /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 |