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 24d621f commit 367b322Copy full SHA for 367b322
.gitpod.Dockerfile
@@ -1,4 +1,9 @@
1
-FROM deniswsrosa/couchbase7-5868-gitpod
+FROM couchbase:latest
2
+
3
+RUN echo "couchbase soft nproc 20000\n"\
4
+"couchbase hard nproc 20000\n"\
5
+"couchbase soft nofile 200000\n"\
6
+"couchbase hard nofile 200000\n" >> /etc/security/limits.conf
7
8
#Simple example on how to extend the image to install Java and maven
9
RUN apt-get -qq update && \
.gitpod.yml
@@ -3,7 +3,7 @@ image:
tasks:
- name: Start Couchbase
- command: cd /opt/couchbase/ && ./start-cb.sh
+ command: /opt/couchbase/bin/couchbase-server --start
- name: Start app
init: ./mvnw package -DskipTests
command: java -jar target/*.jar
0 commit comments