Skip to content

Commit adf4349

Browse files
committed
add basic docker-compose.yml for local postgres
1 parent 2dce173 commit adf4349

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docker-compose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
services:
2+
3+
db:
4+
image: postgres:16.4
5+
volumes:
6+
- "pgdata:/var/lib/postgresql/data"
7+
environment:
8+
POSTGRES_USER: intbot_user
9+
POSTGRES_PASSWORD: intbot_password
10+
POSTGRES_DB: intbot_database_dev
11+
ports:
12+
# 14672 is 10k + app port
13+
- "14672:5432"
14+
15+
volumes:
16+
pgdata:

0 commit comments

Comments
 (0)