Compare commits

...
2 Commits
Author SHA1 Message Date
Arijit Das 0174b9f978 Merge pull request #12 from vulcanize/fix-docker-image
Fix docker image.
2021-10-09 16:47:06 +05:30
Arijit Das 76ea0d32dd Fix docker image. 2021-10-09 16:43:16 +05:30
2 changed files with 3 additions and 3 deletions
+3 -1
View File
@@ -1 +1,3 @@
FROM postgres:12-alpine
FROM postgres:12-alpine
COPY ./schema.sql /docker-entrypoint-initdb.d/init.sql
-2
View File
@@ -10,7 +10,5 @@ services:
POSTGRES_DB: "vulcanize_public"
POSTGRES_PASSWORD: "password"
hostname: db
volumes:
- ./schema.sql:/docker-entrypoint-initdb.d/init.sql
ports:
- "127.0.0.1:8077:5432"