Skip to content

Commit

Permalink
chore: add docker-compose file for postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm committed Mar 14, 2024
1 parent 4c5fe92 commit 1f277a3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: "3"

services:
postgres:
image: postgres:latest
ports:
- "5432:5432"
volumes:
- data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=laskugeneraattori

volumes:
data:

0 comments on commit 1f277a3

Please sign in to comment.