Start Docker containers using docker-composerNavigate to the docker-compose file in the application distribution module: cd ~/cds/ms/blueprintsprocessor/distribution/src/main/dc/ Edit docker-compose.yaml as below Code Block |
---|
language | yml |
---|
theme | DJango |
---|
title | docker-compose.yaml |
---|
| version: '3.3'
services:
db:
image: mariadb:latest
container_name: ccsdk-mariadb
ports:
- "3306:3306"
volumes:
- ~/vm_mysql:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: sdnctl
MYSQL_DATABASE: sdnctl
MYSQL_USER: sdnctl
MYSQL_PASSWORD: sdnctl
MYSQL_INITDB_SKIP_TZINFO: 1
blueprints-processor:
depends_on:
- db
image: onap/ccsdk-blueprintsprocessor:latest
container_name: bp-rest
ports:
- "8000:8080"
restart: always
environment:
APPLICATIONNAME: BlueprintsProcessor
BUNDLEVERSION: 1.0.0
APP_CONFIG_HOME: /opt/app/onap/config
STICKYSELECTORKEY:
ENVCONTEXT: dev |
From there, start the containers: docker-compose up -d This will spin the Docker containers declared inside the docker-compose.yaml file in the background: Image Modified To verify the logs generated by docker-composer, type: docker-compose logs -f |