Skip to content

Commit 45d461e

Browse files
authored
Merge pull request #590 from Ajith0888/docker-patch-1
Updated Dockerfile
2 parents 072cf1d + 97e3c73 commit 45d461e

File tree

1 file changed

+3
-3
lines changed
  • examples/docker-projects/three-node-cluster-with-ha-proxy/src/main/docker/marklogic

1 file changed

+3
-3
lines changed

examples/docker-projects/three-node-cluster-with-ha-proxy/src/main/docker/marklogic/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/MarkL
1515
# Copy the MarkLogic installer to a temp directory in the Docker image being built
1616
COPY MarkLogic-9*.rpm /tmp/MarkLogic.rpm
1717
# Optional - copy the converter package
18-
COPY MarkLogicC*.rpm /tmp/MarkLogicConverters.rpm
18+
##COPY MarkLogicC*.rpm /tmp/MarkLogicConverters.rpm
1919
COPY create-cluster /usr/local/sbin
2020
COPY init-marklogic /usr/local/sbin
2121

2222
# Install MarkLogic then delete the .RPM file if the install succeeded
2323
RUN yum -y install /tmp/MarkLogic.rpm && rm /tmp/MarkLogic.rpm
2424
# Optional - Install MarkLogic Converters then delete the .RPM file if the install succeeded
25-
RUN yum -y install /tmp/MarkLogicConverters.rpm && rm /tmp/MarkLogicConverters.rpm
25+
##RUN yum -y install /tmp/MarkLogicConverters.rpm && rm /tmp/MarkLogicConverters.rpm
2626

2727
# Expose MarkLogic Server ports
2828
# Also expose any ports your own MarkLogic App Servers use such as
@@ -31,4 +31,4 @@ EXPOSE 7997 7998 7999 8000 8001 8002 8003
3131

3232
# Start MarkLogic from init.d script.
3333
# Define default command (which avoids immediate shutdown)
34-
CMD /etc/init.d/MarkLogic start && tail -f /dev/null
34+
CMD /etc/init.d/MarkLogic start && tail -f /dev/null

0 commit comments

Comments
 (0)