Skip to content

Commit f5f88ed

Browse files
committed
Add docker compose file for testing
1 parent 1780d06 commit f5f88ed

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docker-compose.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
services:
2+
postgres:
3+
image: postgres:16.3-alpine
4+
ports:
5+
- 5432:5432
6+
volumes:
7+
- db:/var/lib/postgresql/hummingbird
8+
environment:
9+
- POSTGRES_PASSWORD=test_password
10+
- POSTGRES_USER=test_user
11+
- POSTGRES_DB=test_db
12+
volumes:
13+
db:
14+
driver: local

0 commit comments

Comments
 (0)