🎉 init backend
Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
parent
9bc69f9c58
commit
3b7d4e0021
5 changed files with 221 additions and 0 deletions
13
backend/docker-compose.yml
Normal file
13
backend/docker-compose.yml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
version: "3.9"
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:14-alpine
|
||||
ports:
|
||||
- 5432:5432
|
||||
volumes:
|
||||
- ~/apps/postgres:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=helse123
|
||||
- POSTGRES_USER=admin
|
||||
- POSTGRES_DB=helseveileder
|
||||
Reference in a new issue