forked from olovm/cora-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
startEclipseForCoraNoPorts.sh
executable file
·50 lines (45 loc) · 1.59 KB
/
startEclipseForCoraNoPorts.sh
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! /bin/bash
#USER=$1
USER=$(id -u -n)
BASEDIR=$(dirname $BASH_SOURCE)
echo
echo starting eclipse using:
echo userName: $USER
echo
echo "Testing for container runtimes...."
CONTAINERRUNTIME=podman;
DOCKER_EXISTS=$(command -v docker)
echo "Docker size: "${#DOCKER_EXISTS}
if [ ${#DOCKER_EXISTS} -gt 0 ]; then
CONTAINERRUNTIME=docker;
fi
echo "Container runtime will be "${CONTAINERRUNTIME}
if [ ! $USER ]; then
echo "You must specify the userName used when starting eclipse202103forcora3"
else
#${CONTAINERRUNTIME} run --rm -ti --privileged --ipc=host --env="QT_X11_NO_MITSHM=1" -e DISPLAY=$DISPLAY \
cd eclipse202103forcora3
#docker-compose run -e DISPLAY=$DISPLAY\
#${CONTAINERRUNTIME} run --rm -ti --privileged --net=host --ipc=host --env="QT_X11_NO_MITSHM=1" -e DISPLAY=$DISPLAY \
${CONTAINERRUNTIME} run --rm -ti --privileged --ipc=host --env="QT_X11_NO_MITSHM=1" -e DISPLAY=$DISPLAY \
-v /var/run/docker.sock:/var/run/docker.sock\
-v /tmp/.X11-unix:/tmp/.X11-unix\
-v INSTALLDIR/workspace:/home/$USER/workspace\
-v INSTALLDIR/eclipse:/home/$USER/eclipse\
-v INSTALLDIR/.eclipse:/home/$USER/.eclipse\
-v INSTALLDIR/.saros:/home/$USER/.saros\
-v PARENTDIR/m2:/home/$USER/.m2\
-v PARENTDIR/eclipseP2:/home/$USER/.p2\
-v PARENTDIR/.gitconfig:/home/$USER/.gitconfig\
-e user=$USER\
--network=eclipseForCoraNet\
--name eclipse202103forcora3NoPorts\
eclipse202103forcora3 $2
cd ../
fi
#5432 postgresql (exposed directly from that container)
#9876 karma
#8080 tomcat
#8090 fitnesse
#8983 solr (exposed directly from that container)
# -p 8080:8080 -p 9876:9876 -p 8090:8090 -p 8983:8983 -p 5432:5432\