We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ec6ec commit c0b2e70Copy full SHA for c0b2e70
Dockerfile
@@ -1,8 +1,5 @@
1
-# docker build -t postgres-meta .
2
-# docker run -t -i -p8080:8080 postgres-meta
3
-
4
FROM debian:stable-slim
5
-COPY bin/postgres-meta-linux .
+COPY bin/postgres-meta-linux /bin/postgres-meta
6
ENV PG_META_PORT=8080
7
-ENTRYPOINT ["postgres-meta-linux"]
+ENTRYPOINT ["postgres-meta"]
8
EXPOSE 8080
docker-compose.yaml renamed to docker-compose.yml
@@ -1,11 +1,9 @@
-# docker-compose.yml
-version: "3"
services:
db:
image: postgres:13
ports:
- - "5432:5432"
+ - 5432:5432
volumes:
9
- - ./test/postgres/mnt:/docker-entrypoint-initdb.d/
+ - ./test/postgres/mnt:/docker-entrypoint-initdb.d
10
environment:
11
POSTGRES_PASSWORD: postgres
0 commit comments