Hosting
Hosting Options​
You can host EventCatalog anywhere you want, as it's just static content.
Here are some guides and places you can host static content
Community posts
- Using AWS CDK to Deploy EventCatalog
- Using Netlify to host Static Content
- How to create an EventCatlaog with Azure
- Autonomous EventCatalog for documenting EventBridge Events
Hosting with Docker​
EventCatalog comes with a DockerFile you can build the image and deploy the container. The container exposes ports 3000
.
To build the docker container you need to run:
# Builds the container
docker build -t eventcatalog .
# Runs the container locally
docker run -p 3000:80 -it eventcatalog