summaryrefslogtreecommitdiffstats
path: root/odlsli/src/main/dc/docker-compose.yaml
blob: 18912f83be4135b0b2a4004cef14e8e5db059c32 (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
version: '2.1'

services:
  db:
    image: mariadb:10.5
    container_name: odlsli_db
    ports:
      - "3306"
    environment:
      - MYSQL_ROOT_PASSWORD=MySecretPassword
      - MYSQL_ROOT_HOST=%
    logging:       
      driver:   "json-file"
      options:  
        max-size: "30m"
        max-file: "5"
  
      
  odlsli:
    image: onap/ccsdk-odlsli-alpine-image:latest
    depends_on:
      - db
    container_name: odlsli_controller
    entrypoint: ["/opt/onap/ccsdk/bin/startODL.sh"]
    ports:
      - "8383:8181"
      - "1830:1830"
      - "8543:8443"
    links:
      - db:dbhost
      - db:sdnctldb01
      - db:sdnctldb02
    environment:
      - MYSQL_ROOT_PASSWORD=MySecretPassword
      - SDNC_CONFIG_DIR=/opt/onap/ccsdk/data/properties
      - JAVA_OPTS=-Xms512m -Xmx2048m
    logging:       
      driver:   "json-file"
      options:  
        max-size: "30m"
        max-file: "5"

  dgbuilder:
    image: onap/ccsdk-dgbuilder-image:latest
    depends_on:
      - db
    container_name:  odlsli_dgbuilder
    entrypoint:
       - "/bin/bash"
       - "-c"
       - "cd /opt/onap/ccsdk/dgbuilder/ && ./start.sh sdnc1.0 && wait"
    ports:
      - "3200:3100"
    links:
      - db:dbhost
      - db:sdnctldb01
      - db:sdnctldb02
    environment:
      - MYSQL_ROOT_PASSWORD=MySecretPassword
      - SDNC_CONFIG_DIR=/opt/onap/ccsdk/data/properties
      - MYSQL_USER=${MYSQL_USER}
      - MYSQL_PASSWORD=${MYSQL_PASSWORD}
      - MYSQL_DATABASE=${MYSQL_DATABASE}
    logging:
      driver:   "json-file"
      options:
        max-size: "30m"
        max-file: "5"