File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
examples/docker-projects/three-node-cluster-with-ha-proxy/src/main/docker/marklogic Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
1616COPY 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
1919COPY create-cluster /usr/local/sbin
2020COPY init-marklogic /usr/local/sbin
2121
2222# Install MarkLogic then delete the .RPM file if the install succeeded
2323RUN 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
You can’t perform that action at this time.
0 commit comments