Build and Verify the Image Locally:
From the project root directory, build the Docker image:BASH
BASH
BASH
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
docker buildx build \
--platform linux/amd64 \
-t agentic-webhooks \
--load .
# Run the local image
docker run -p 9511:9511 <your-image-name>
# Run interactively with shell access:
docker run -it -p 9511:9511 <your-image-name> /bin/bash
# Stop running container
docker stop <container-id-or-name>
# Tidy
docker rm <container-id-or-name>
# Use a date structure instead of latest for clarity
docker tag agentic-webhooks {{REGISTRY_URL}}/agentic-webhooks:20260421
$ docker image ls
agentic-webhooks:latest d350a69a97bf 163MB 0B
{{REGISTRY_URL}}/agentic-webhooks:20260421 d350a69a97bf 163MB 0B
