aboutsummaryrefslogtreecommitdiffstats
path: root/httpserver/docker-compose.yml
blob: 0b8046550f93215ba9a458c1569a73b541abe680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: "2.1"

services:
  http-server:
    image: onap/org.onap.integration.simulators.httpserver
    ports:
      - "32080:80"
      - "8080:8080"
      - "32443:443"
      - "32000:32000"
      - "32100:32100"
    volumes:
      - ~/httpservervolumes/:/usr/local/apache2/htdocs
      - ./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