new build structure
This commit is contained in:
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user