# Kestra POC runtime commands

This POC uses Docker named volumes and localhost-only port binding.

- UI/API: http://127.0.0.1:18080
- Service port: http://127.0.0.1:18081
- Host bridge: http://127.0.0.1:19091
- Docker network: kestra-poc-net
- Docker containers: kestra-poc-postgres, kestra-poc
- Docker volumes: kestra-poc-postgres-data, kestra-poc-data

Stop/cleanup:

```bash
docker rm -f kestra-poc kestra-poc-postgres
# optional after the POC if data is no longer needed:
# docker volume rm kestra-poc-postgres-data kestra-poc-data
# docker network rm kestra-poc-net
```
