🐋 Dockerfile Update + First Pages

This commit is contained in:
Moritz Utcke
2023-03-29 00:08:47 +04:00
parent 5285f832bf
commit 44ce792fdd
34 changed files with 5043 additions and 687 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
version: '3'
services:
online-energieausweis:
build: ./
container_name: online-energieausweis
command: pnpm run dev --host
links:
- db
environment:
PORT: 3000
DB_CONNECTION: postgres://user:secure1@db/main
NODE_ENV: "development"
ports:
- 3000:3000
volumes:
- ./:/online-energieausweis
db:
build: ../database
ports:
- "5436:5432"