Add script to start AGL worker XDS docker container.
[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         *[0-9]*)
54             ID=$1
55             ;;
56         *)
57             IMAGE=$1
58             ;;
59     esac
60     shift
61 done
62
63 [ "$ID" = "" ] && usage
64
65 USER=$(id -un)
66 echo "Using instance ID #$ID (user $(id -un))"
67
68 NAME=agl-xds-$(hostname|cut -f1 -d'.')-$ID-$USER
69
70 MIRRORDIR=$HOME/ssd/localmirror_$ID
71 XDTDIR=$HOME/ssd/xdt_$ID
72 SHAREDDIR=$HOME/$DOCKER_USER/docker/share
73
74 SSH_PORT=$((2222 + ID))
75 WWW_PORT=$((8000 + ID))
76 BOOT_PORT=$((69 + ID))
77 NBD_PORT=$((10809 + ID))
78
79 mkdir -p $MIRRORDIR $XDTDIR $SHAREDDIR
80 docker run \
81         --publish=${SSH_PORT}:22 \
82         --publish=${WWW_PORT}:8000 \
83         --publish=${BOOT_PORT}:69/udp \
84         --publish=${NBD_PORT}:10809 \
85         --detach=true \
86         --hostname=$NAME --name=$NAME \
87         --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro \
88         -v $MIRRORDIR:/home/$DOCKER_USER/mirror \
89         -v $SHAREDDIR:/home/$DOCKER_USER/share \
90         -v $XDTDIR:/xdt \
91         -it $IMAGE
92
93 if ($FORCE); then
94     echo "Stoping xds-server..."
95     docker exec --user $DOCKER_USER  ${NAME} bash -c "/usr/local/bin/xds-server-stop.sh"
96     sleep 1
97     echo "Starting xds-server..."
98     docker exec --user $DOCKER_USER  ${NAME} bash -c "nohup /usr/local/bin/xds-server-start.sh"
99 fi
100
101 echo "You can now login using:"
102 echo "   ssh -p $SSH_PORT $DOCKER_USER@$(hostname)"