File tree Expand file tree Collapse file tree 5 files changed +14
-9
lines changed Expand file tree Collapse file tree 5 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -133,4 +133,4 @@ mysql:
133133storage :
134134 build : docker/storage/
135135 volumes :
136- - /data
136+ - /storage
Original file line number Diff line number Diff line change @@ -147,4 +147,4 @@ mysql:
147147storage :
148148 build : docker/storage/
149149 volumes :
150- - /data
150+ - /storage
Original file line number Diff line number Diff line change @@ -139,4 +139,4 @@ mysql:
139139storage :
140140 build : docker/storage/
141141 volumes :
142- - /data
142+ - /storage
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ COPY ./conf/ /opt/solr-conf/
2020RUN curl -sf -o /tmp/solr-typo3-plugin.jar -L http://www.typo3-solr.com/fileadmin/files/solr/solr-typo3-plugin-1.3.0.jar
2121
2222# Init directories
23- RUN cp -a /opt/solr-conf/* /opt/solr/example/solr/
24- RUN mkdir -p /opt/solr/example/solr/typo3cores/data
25- RUN mkdir -p /opt/solr/example/solr/typo3lib
23+ RUN cp -a /opt/solr-conf/* /opt/solr/example/solr/ \
24+ && mkdir -p /opt/solr/example/solr/typo3cores/data \
25+ && mkdir -p /opt/solr/example/solr/typo3lib
2626
2727# Add plugins
28- RUN mv /tmp/solr-typo3-plugin.jar /opt/solr/example/solr/typo3lib/
29- RUN ln -s /opt/solr/contrib /opt/solr/example/solr/contrib
28+ RUN mv /tmp/solr-typo3-plugin.jar /opt/solr/example/solr/typo3lib/ \
29+ && ln -s /opt/solr/contrib /opt/solr/example/solr/contrib
3030
3131# Fix rights
3232RUN chown solr:solr -R /opt/solr/example/solr/
Original file line number Diff line number Diff line change 22# Storage Docker container
33# ++++++++++++++++++++++++++++++++++++++
44
5- FROM webdevops/storage
5+ FROM busybox
6+
7+ RUN mkdir /storage \
8+ && chmod 1777 /storage
9+
10+ VOLUME "/storage"
You can’t perform that action at this time.
0 commit comments