# Steps to run activiti-spec docker 1. Create a directory on host machine to hold configuration file. 2. Copy the provided configuration.yaml in this new;y created directory and populate real enviornment value of Cassandra to which activity-spec web service needs to be connected. 3. Execute below commands to start docker containers. # 1. Start activity-spec container docker run -d --name -e JAVA_OPTIONS="-Xmx128m -Xms128m -Xss1m" -v :/etc/onap/activity-spec/be/config -p :8080 # 2. Start activity-spec-init container docker run -d --name -e CS_HOST= -e CS_PORT= -e CS_USER= -e CS_PASSWORD= # Example Commands docker run -d --name sdc-act -e JAVA_OPTIONS="-Xmx128m -Xms128m -Xss1m" -v /data/environments:/etc/onap/activity-spec/be/config -p 8090:8080 onap/activity-spec:1.2.0-SNAPSHOT docker run -d --name sdc-act-init -e CS_HOST=172.17.0.2 -e CS_USER=asdc_user -e CS_PORT=9160 -e CS_PASSWORD=Aa1234%^! onap/activity-spec-init:1.2.0-SNAPSHOT