We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56be2d9 commit 9b4a993Copy full SHA for 9b4a993
1 file changed
rust/docker-compose.yml
@@ -0,0 +1,22 @@
1
+version: '3.8'
2
+services:
3
+ postgres:
4
+ image: postgres:15
5
+ environment:
6
+ POSTGRES_DB: postgres
7
+ POSTGRES_USER: postgres
8
+ POSTGRES_PASSWORD: postgres
9
+ volumes:
10
+ - postgres-data:/var/lib/postgresql/data
11
+ - ./impls/src/postgres/sql/v0_create_vss_db.sql:/docker-entrypoint-initdb.d/init.sql
12
+ ports:
13
+ - "5432:5432"
14
+ networks:
15
+ - app-network
16
+
17
+volumes:
18
+ postgres-data:
19
20
+networks:
21
+ app-network:
22
+ driver: bridge
0 commit comments