Skip to content

Commit 6ddd1fa

Browse files
author
Eugene Artamonov
committed
Add docker-compose.yml
1 parent f87bf00 commit 6ddd1fa

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: '3'
2+
services:
3+
postgres:
4+
image: postgres:alpine
5+
environment:
6+
POSTGRES_PASSWORD: marcus
7+
volumes:
8+
- ./db/data.sql:/data.sql
9+
- ./db/install.sql:/install.sql
10+
- ./db/structure.sql:/structure.sql
11+
- ./db/setup.sh:/docker-entrypoint-initdb.d/setup.sh
12+
ports:
13+
- 5432:5432

0 commit comments

Comments
 (0)