Skip to content

Commit

Permalink
Create docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
surya authored Jan 6, 2026
1 parent 0069e81 commit 28be032
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3.7"

services:
postgres:
image: postgres:15.1
restart: always
environment:
POSTGRES_DB: idatt1005-db
POSTGRES_USER: idatt1005user
POSTGRES_PASSWORD: idatt1005password
ports:
- 5432:5432
volumes:
- db:/var/lib/postgresql/data

volumes:
data1-1:
db: { }

0 comments on commit 28be032

Please sign in to comment.