Access
Step 4: Access the Application
Once the container is running, you can access the application at:
- Local access: http://localhost:3210/icuboard.html
- Network access: http://[your-server-ip]:3210/icuboard.html
Managing the Container
Check container status
docker psView container logs
docker logs daecos-predictorStop the container
docker stop daecos-predictorStart the container
docker start daecos-predictorRemove the container
docker rm daecos-predictorUpdate to latest version
# Stop and remove current container
docker stop daecos-predictor
docker rm daecos-predictor
# Pull latest image
# make sure you replace [ORG_NAME] with your
# organization name in lowercase
docker pull 713377909722.dkr.ecr.us-east-1.amazonaws.com/daecos-predictor/[ORG_NAME]:latest
# Run new container
docker run -d \
--name daecos-predictor \
-p 8080:8080 \
[your-registry]/[your-org-name]/daecos-predictor:latest