-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
27 lines (25 loc) · 805 Bytes
/
.gitpod.yml
File metadata and controls
27 lines (25 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
image:
file: .gitpod.Dockerfile
tasks:
- init: >
cd /workspace &&
wget -O karaf.tar.gz http://archive.apache.org/dist/karaf/4.3.0/apache-karaf-4.3.0.tar.gz &&
tar -zvxf karaf.tar.gz &&
rm karaf.tar.gz &&
cd /workspace/osgi-openapi-example/openapi-integration &&
mvn clean install &&
cd .. &&
mvn clean install
command: >
export JAVA_TOOL_OPTIONS="-Xmx4096m" &&
karaf debug
name: Backend
- command: >
cd /workspace/apache-karaf-4.3.0/data/log/ &&
tail -f karaf.log
name: Backend_Log
# currently there is no option to ignore ports and do NOT expose them, so every port we now ignore is exposed and can be accessed from outside ... be careful!
ports:
# default http port of Karaf
- port: 8181
onOpen: ignore