aboutsummaryrefslogtreecommitdiffstats
path: root/sanitycheck/https-server/docker-compose.yml
blob: fabce9a54275398efa1a11beb5b5317ccdd88c1f (plain)
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
version: "2.1"

services:

  http-server:
    image: onap/org.onap.integration.nfsimulator.pmhttpsserver
    ports:
      - "32080:80"
      - "38080:8080"
      - "32443:443"
      - "32000:32000"
      - "32100:32100"
    networks:
      - nf-simulator-network
    volumes:
      - ./volumes/httpservervolumes/:/usr/local/apache2/htdocs
      - ./volumes/logs:/var/log/apache2
    command: bash -c "
      echo 'Http Server start';
      while [[ $$(ls -1 /etc/apache2/certs/ | wc -l) != '3' ]]; do echo 'Waiting for certs...'; sleep 3; done;
      chmod 777 /usr/local/apache2/htdocs;
      cp /usr/local/apache2/conf/upload.php /usr/local/apache2/htdocs/upload.php;
      touch /usr/local/apache2/htdocs/index.html;
      /usr/sbin/apache2ctl -D FOREGROUND;
      "
    restart: on-failure

#
# external network
networks:
  nf-simulator-network:
    external:
      name: nf-simulator-network