Skip to content

Commit 284243d

Browse files
committed
chore: create the docker-compose.yaml configuration for local environment
1 parent e614e0c commit 284243d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.docker/docker-compose.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: '3.9'
2+
3+
services:
4+
5+
db:
6+
image: postgres
7+
restart: always
8+
shm_size: 128mb
9+
ports:
10+
- 5432:5432
11+
environment:
12+
POSTGRES_USER: lou
13+
POSTGRES_PASSWORD: lou
14+
POSTGRES_DB: lou_db
15+
16+
adminer:
17+
image: adminer
18+
restart: always
19+
ports:
20+
- 8080:8080

0 commit comments

Comments
 (0)