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:
133
133
storage :
134
134
build : docker/storage/
135
135
volumes :
136
- - /data
136
+ - /storage
Original file line number Diff line number Diff line change @@ -147,4 +147,4 @@ mysql:
147
147
storage :
148
148
build : docker/storage/
149
149
volumes :
150
- - /data
150
+ - /storage
Original file line number Diff line number Diff line change @@ -139,4 +139,4 @@ mysql:
139
139
storage :
140
140
build : docker/storage/
141
141
volumes :
142
- - /data
142
+ - /storage
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ COPY ./conf/ /opt/solr-conf/
20
20
RUN curl -sf -o /tmp/solr-typo3-plugin.jar -L http://www.typo3-solr.com/fileadmin/files/solr/solr-typo3-plugin-1.3.0.jar
21
21
22
22
# 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
26
26
27
27
# 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
30
30
31
31
# Fix rights
32
32
RUN chown solr:solr -R /opt/solr/example/solr/
Original file line number Diff line number Diff line change 2
2
# Storage Docker container
3
3
# ++++++++++++++++++++++++++++++++++++++
4
4
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