Blame view

deploy.sh 1.89 KB
a7065b1b3   George Vlahavas   Add deploy and de...
1
  #!/bin/sh
bb68d7fdb   George Vlahavas   Dump all containe...
2
  dump_logs() {
33ea208d5   George Vlahavas   Fix typo
3
    CONTAINERS="suricata elasticsearch logstash kibana webserver composer api od mltd mqtt timescaledb grafana"
bb68d7fdb   George Vlahavas   Dump all containe...
4
    for CONTAINER in $CONTAINERS; do
83d192a8b   George Vlahavas   Mark end of logs too
5
      echo "*** Logs for kea_$CONTAINER (start) ***"
bb68d7fdb   George Vlahavas   Dump all containe...
6
      docker logs kea_$CONTAINER
83d192a8b   George Vlahavas   Mark end of logs too
7
      echo "*** Logs for kea_$CONTAINER (end) ***"
bb68d7fdb   George Vlahavas   Dump all containe...
8
    done
626f6d63f   George Vlahavas   Show contents of ...
9
10
11
    echo "*** Contents of data directory (start) ***"
    ls -lR data
    echo "*** Contents of data directory (end) ***"
bb68d7fdb   George Vlahavas   Dump all containe...
12
  }
a7065b1b3   George Vlahavas   Add deploy and de...
13
14
15
16
17
18
19
20
21
22
  # Login into the CUREX registry
  docker login https://registry.curex-project.eu:443/artifactory/curex-local/
  
  # pull all containers
  docker-compose -f docker-compose-jfrog.yml pull
  
  sleep 1
  
  # Prepare installation
  cd api
41c17fd87   George Vlahavas   Fix filename
23
  cp .env.example .env
a7065b1b3   George Vlahavas   Add deploy and de...
24
25
26
27
  docker run --rm -v $(pwd):/app \
    registry.curex-project.eu:443/curex-local/kea_composer:2.0.7 \
    install
  cd ..
3f6bad8ff   George Vlahavas   Run create_volume...
28
  sh ./create_volumes.sh
a7065b1b3   George Vlahavas   Add deploy and de...
29

1898c47f2   George Vlahavas   Loop until all al...
30
31
  # Keep the timestamp of when starting up containers
  TIME_START=`date +%s`
a7065b1b3   George Vlahavas   Add deploy and de...
32
33
  # Run containers
  docker-compose -f docker-compose-jfrog.yml up --detach
1898c47f2   George Vlahavas   Loop until all al...
34
35
  
  # loop until all containers are up
942cf4e44   George Vlahavas   Fix loop
36
  while true; do
1898c47f2   George Vlahavas   Loop until all al...
37
38
39
40
41
42
43
44
    # if any container other than composer has exited, bail out
    res=`docker ps -a | \
      grep "/curex-local/kea_" | \
      grep -v "kea_composer" | \
      grep "Exited" | \
      wc -l`
    if [ $res -gt 0 ]; then
      echo "ERROR: Some containers have exited."
24c412072   George Vlahavas   Show header line
45
      docker ps -a | grep "^CONTAINER\|/curex-local/kea_"
bb68d7fdb   George Vlahavas   Dump all containe...
46
      dump_logs
1898c47f2   George Vlahavas   Loop until all al...
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
      exit 1
    fi
    # count containers that are up
    res=`docker ps -a | \
      grep "/curex-local/kea_" | \
      grep -v "kea_composer" | \
      grep "Up" | \
      wc -l`
    if [ $res -eq 11 ]; then
      break
    fi
    # only wait for 10 mins until everything is up. It should be more than
    # enough.
    TIME_NOW=`date +%s`
    if [ $((TIME_NOW - TIME_START)) -ge 600 ]; then
      echo "ERROR: Timeout exceeded."
bb68d7fdb   George Vlahavas   Dump all containe...
63
      dump_logs
1898c47f2   George Vlahavas   Loop until all al...
64
65
66
67
68
69
70
      exit 2
    fi
    sleep 1
  done
  
  # Wait a bit more
  sleep 10
a7065b1b3   George Vlahavas   Add deploy and de...
71
72
  
  # create and populate the database
64ac3cad4   George Vlahavas   Specify filename ...
73
  docker-compose -f docker-compose-jfrog.yml exec api php artisan migrate:fresh --seed --force
a7065b1b3   George Vlahavas   Add deploy and de...
74