Support SDK directory with spaces
[src/xds/xds-server.git] / scripts / xds-docker-create-container.sh
1 #!/bin/bash
2
3 ##########################################
4 # WARNING WARNING WARNING WARNING
5 #
6 # This script is an example to start a new AGL XDS container
7 #
8 # You should customize it to fit your environment and in particular
9 # adjust the paths and permissions where needed.
10 #
11 # Note that sharing volumes with host system is not mandatory: it
12 # was just added for performances reasons: building from a SSD is
13 # just faster than using the container filesystem: that's why /xdt is
14 # mounted from there. Same applies to ~/mirror and ~/share, which are
15 # just 2 convenient folders to store reference build caches (used in prepare_meta script)
16 #
17 ##########################################
18
19 CURDIR=$(cd $(dirname $0) && pwd -P)
20
21 REGISTRY=docker.automotivelinux.org
22 REPO=agl
23 NAME=worker
24 FLAVOUR=xds
25 VERSION=3.99.1
26
27 # ---------------------------------------------------
28 # --- computed - don't touch !
29 # ---------------------------------------------------
30 DOCKER_USER=devel
31
32 DEFIMAGE=$REGISTRY/$REPO/$NAME-$FLAVOUR:$VERSION
33
34 function usage() {
35         echo "Usage: $(basename $0) <instance ID> [image name]"  >&2
36         echo "Instance ID must be 0 or a positive integer (1,2,...)" >&2
37         echo "Image name is optional: 'make show-image' is used by default to get image" >&2
38         echo "Default image: $DEFIMAGE" >&2
39         exit 1
40 }
41
42 ID=""
43 IMAGE=$DEFIMAGE
44 FORCE=false
45 while [ $# -ne 0 ]; do
46     case $1 in
47         -h|--help|"")
48             usage
49             ;;
50         -fr|-force-restart)
51             FORCE=true
52             ;;
53         *)
54             if [[ "$1" =~ ^[0-9]+$ ]]; then
55                 ID=$1
56             else
57                 IMAGE=$1
58             fi
59             ;;
60     esac
61     shift
62 done
63
64 [ "$ID" = "" ] && usage
65
66 USER=$(id -un)
67 echo "Using instance ID #$ID (user $(id -un))"
68
69 NAME=agl-xds-$(hostname|cut -f1 -d'.')-$ID-$USER
70
71 MIRRORDIR=$HOME/ssd/localmirror_$ID
72 XDTDIR=$HOME/ssd/xdt_$ID
73 SHAREDDIR=$HOME/$DOCKER_USER/docker/share
74
75 SSH_PORT=$((2222 + ID))
76 WWW_PORT=$((8000 + ID))
77 BOOT_PORT=$((69 + ID))
78 NBD_PORT=$((10809 + ID))
79
80 mkdir -p $MIRRORDIR $XDTDIR $SHAREDDIR || exit 1
81 docker run \
82         --publish=${SSH_PORT}:22 \
83         --publish=${WWW_PORT}:8000 \
84         --publish=${BOOT_PORT}:69/udp \
85         --publish=${NBD_PORT}:10809 \
86         --detach=true \
87         --hostname=$NAME --name=$NAME \
88         --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro \
89         -v $MIRRORDIR:/home/$DOCKER_USER/mirror \
90         -v $SHAREDDIR:/home/$DOCKER_USER/share \
91         -v $XDTDIR:/xdt \
92         -it $IMAGE
93 if [ "$?" != "0" ]; then
94     echo "An error was encountered while creating docker container."
95     exit 1
96 fi
97
98 if ($FORCE); then
99     echo "Stoping xds-server..."
100     docker exec --user $DOCKER_USER  ${NAME} bash -c "/usr/local/bin/xds-server-stop.sh" || exit 1
101     sleep 1
102     echo "Starting xds-server..."
103     docker exec --user $DOCKER_USER  ${NAME} bash -c "nohup /usr/local/bin/xds-server-start.sh" || exit 1
104 fi
105
106 echo "Copying your identity to container $NAME"
107 #wait ssh service
108 echo -n wait ssh service .
109 res=3
110 max=30
111 count=0
112 while [ $res -ne 0 ] && [ $count -le $max ]; do
113     sleep 1
114     docker exec ${NAME} bash -c "systemctl status ssh" 2>/dev/null 1>&2 
115     res=$?
116     echo -n "."
117     count=$(expr $count + 1);
118 done
119 echo
120
121 ssh-keygen -R [$(hostname)]:$SSH_PORT -f ~/.ssh/known_hosts
122 docker exec ${NAME} bash -c "mkdir -p /home/devel/.ssh"
123 docker cp ~/.ssh/id_rsa.pub ${NAME}:/home/devel/.ssh/authorized_keys
124 docker exec ${NAME} bash -c "chown devel:devel -R /home/devel/.ssh ;chmod 0700 /home/devel/.ssh;chmod 0600 /home/devel/.ssh/*"
125 ssh -o StrictHostKeyChecking=no -p $SSH_PORT devel@$(hostname) exit
126
127 echo "You can now login using:"
128 echo "   ssh -p $SSH_PORT $DOCKER_USER@$(hostname)"