Skip to content

Commit 97cf2e9

Browse files
[feat 🎉] setup docker compose 📀
1 parent 0088aef commit 97cf2e9

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

docker-compose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "3.9"
2+
services:
3+
find-devs-db:
4+
image: postgres
5+
restart: always
6+
container_name: find-devs-db
7+
ports:
8+
- 5000:5000
9+
environment:
10+
POSTGRES_PASSWORD: sabbir
11+
PGDATA: /data/postgres
12+
volumes:
13+
- postgres:/data/postgres
14+
15+
volumes:
16+
postgres:

0 commit comments

Comments
 (0)