Sicura Console is now distributed exclusively as a container image and can be run using Docker, Podman, or deployed to container orchestration platforms like Kubernetes.
The Sicura Console container can be deployed in several ways depending on your needs:
For detailed instructions on each deployment option, including example commands and configurations, see the Running the Console Container section in the Container Installation guide.
# View logs in real-time
docker logs -f sicura-console
# View the most recent 100 lines
docker logs --tail 100 sicura-console
# Stop the container
docker stop sicura-console
# Start the container
docker start sicura-console
# Restart the container
docker restart sicura-console
# Remove the container (must be stopped first)
docker rm sicura-console
For troubleshooting or advanced configuration:
docker exec -it sicura-console /bin/bash
The Sicura Console container exposes a health endpoint at /health that can be queried to verify the application status:
curl http://localhost:6468/health