To build:using remote distribution:docker image build -f Dockerfile -t ice-opencds .using locally downloaded opencds-ice.tar.gz:docker image build -f Dockerfile.local -t ice-opencds .To run in background:docker run -d -p <random localhost port>:8080 ice-opencdsTo list running containers:docker container ls --allTo execute a bash shell on the container:docker exec -it <name from running docker container above> bashTo stop:docker container stop <name from running docker container above>To remove:docker container rm <name from running docker container above>