You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
Version 1
Next »
In order to enable remote debugging via Eclipse the developer/tester must enable the capability within the docker-compose.yml (see the snippet below):
- Open the /opt/appc/docker-compose/docker-compose.yml
- Port 5005 on the container needs to be opened up
- Add The KARAF_DEBUG=true line in the environment section
| | |
# Tweaking SDNC_CONFIG_DIR temporarily from ../sdnc/.. to ../appc/.. since it may be needed in this script # to map to SDN-C AAI Service Bundle's AAI Activator class inside the gerrit sdnc/adaptors repo, so that # the AAI Service bundle loads APP-C's aaiclient.properties instead of SDN-C's aaiclient.properties. appc: image: "openecomp/appc-image:latest" depends_on : - db container_name: appc_controller_container entrypoint: ["/opt/openecomp/appc/bin/startODL.sh"] ports: - "8282:8181" - "1830:1830" - "5005:5005" links: - db:dbhost - db:sdnctldb01 - db:sdnctldb02 environment: - MYSQL_ROOT_PASSWORD=openECOMP1.0 - SDNC_CONFIG_DIR=/opt/openecomp/appc/data/properties - APPC_CONFIG_DIR=/opt/openecomp/appc/data/properties - DMAAP_TOPIC_ENV=AUTO - KARAF_DEBUG=true |
| | |