blob: e48a83026ceba2731f7e47f56396f1f650678c96 (
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
|
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
logging:
driver: "json-file"
options:
max-size: "30m"
max-file: "5"
|