summaryrefslogtreecommitdiffstats
path: root/installation/src/main/yaml/docker-compose.yml
blob: ac84b7171cab297212622a5250472bb337d6691e (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
version: '2'

services:
  db:
    image: mysql/mysql-server:5.6
    container_name: sdnc_db_container
    ports:
      - "3306"
    environment:
      - MYSQL_ROOT_PASSWORD=openECOMP1.0
      - MYSQL_ROOT_HOST=%
    logging:       
      driver:   "json-file"
      options:  
        max-size: "30m"
        max-file: "5"
  
      
  sdnc:
    image: ${ECOMP_DOCKER_HOST}:${ECOMP_DOCKER_PORT}/ecomp/sdnc-image:latest 
    depends_on :
      - db
    container_name: sdnc_controller_container
    entrypoint: ["/opt/openecomp/sdnc/bin/startODL.sh"]
    ports:
      - "8282:8181"
    links:
      - db:dbhost
      - db:sdnctldb01
      - db:sdnctldb02
    environment:
      - MYSQL_ROOT_PASSWORD=openECOMP1.0
      - SDNC_CONFIG_DIR=/opt/openecomp/sdnc/data/properties
    logging:       
      driver:   "json-file"
      options:  
        max-size: "30m"
        max-file: "5"
  
  
  web:
    image: ${ECOMP_DOCKER_HOST}:${ECOMP_DOCKER_PORT}/ecomp/admportal-sdnc-image:latest
    depends_on:
      - db
    container_name: sdnc_portal_container
    entrypoint: 
       - "/bin/bash"
       - "-c"
       - "cd /opt/openecomp/sdnc/admportal/shell && ./start_portal.sh"
    ports:
      - "8843:8843"
    links:
      - db:dbhost
      - db:sdnctldb01
      - db:sdnctldb02
      - sdnc:sdnhost
    environment:
      - MYSQL_ROOT_PASSWORD=openECOMP1.0
      - SDNC_CONFIG_DIR=/opt/openecomp/sdnc/data/properties
    logging:       
      driver:   "json-file"
      options:  
        max-size: "30m"
        max-file: "5"
  
  
  dgbuilder:
    image: ${ECOMP_DOCKER_HOST}:${ECOMP_DOCKER_PORT}/ecomp/dgbuilder-sdnc-image:latest
    depends_on:
      - db
    container_name:  sdnc_dgbuilder_container
    entrypoint:
       - "/bin/bash"
       - "-c"
       - "cd /opt/openecomp/sdnc/dgbuilder/ && ./start sdnc1.0 && wait"
    ports:
      - "3000:3100"
    links:
      - db:dbhost
      - db:sdnctldb01
      - db:sdnctldb02
      - sdnc:sdnhost
    environment:
      - MYSQL_ROOT_PASSWORD=openECOMP1.0
      - SDNC_CONFIG_DIR=/opt/openecomp/sdnc/data/properties
    logging:       
      driver:   "json-file"
      options:  
        max-size: "30m"
        max-file: "5"