Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 250b5ea

Browse files
committed
Correct docker compose for tests
1 parent 79b370c commit 250b5ea

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

scripts/docker/postgres/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ RUN apt-get update \
2222
RUN ["chmod", "+x", "/neo4j-fdw/source/scripts/docker/postgres/init.sh"]
2323
RUN /neo4j-fdw/source/scripts/docker/postgres/init.sh
2424

25-
ADD ./scripts/docker/postgres/initdb.sql /docker-entrypoint-initdb.d
25+

scripts/docker/postgres/init.sh

+7-10
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,16 @@
22

33
# Install Multicorn
44
echo "~~~~~~~~~~~~~ Installing multicorn"
5-
cd /tmp
6-
if [ -d "/Multicorn" ]; then
5+
cd ~
6+
if [ ! -d "/Multicorn" ]; then
77
git clone git://github.com/Kozea/Multicorn.git
8-
cd Multicorn
9-
git checkout tags/v1.3.4
10-
make && make install
118
fi
9+
cd Multicorn
10+
git checkout tags/v1.3.4
11+
make && make install
1212

1313
# Install neo4j fdw
1414
echo "~~~~~~~~~~~~~ Installing Neo4j FDW"
15-
if [ -d "/source" ]; then
16-
cd /source/
17-
else
18-
cd /neo4j-fdw/source/
19-
fi
15+
cd /neo4j-fdw/source/
16+
ls -l
2017
make install

0 commit comments

Comments
 (0)