We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7d7ae commit ff4e721Copy full SHA for ff4e721
enterprise/sync-gateway/3.0.4/Dockerfile
@@ -28,8 +28,10 @@ RUN set -x \
28
# Create directory where the default config stores memory snapshots to disk
29
RUN mkdir /opt/couchbase-sync-gateway/data
30
31
-# Copy the default config into the container
32
-COPY config/sync_gateway_config.json /etc/sync_gateway/config.json
+# Copy sample service config as the initial config
+RUN mkdir /etc/sync_gateway \
33
+ && cp /opt/couchbase-sync-gateway/examples/serviceconfig.json /etc/sync_gateway/config.json \
34
+ && chown -R sync_gateway:sync_gateway /etc/sync_gateway
35
36
# Create log dir
37
RUN set -x \
0 commit comments