There is a Docker Hub KaotoIO organization in which you can find all the docker images for both frontend and backend.
As described on the QuickStart, there are two separated docker images: one for the frontend
and another for the backend
.
You can run them with the following commands:
docker run --rm -d -p 8081:8081 --name kaoto-backend kaotoio/backend
docker run --rm -d -p 8080:8080 --name kaoto-frontend kaotoio/frontend
And you can open http://localhost:8080 to use Kaoto.
You can also try the nightly
version with the following:
docker run --rm -d -p 8081:8081 --name kaoto-backend kaotoio/backend:nightly
docker run --rm -d -p 8080:8080 --name kaoto-frontend kaotoio/frontend:nightly
If you want to test the latest nightly version, remember to always docker pull kaotoio/backend:nightly
before running it.
Always stop the containers when finishing using Kaoto so you don’t have containers dangling:
docker stop kaoto-backend
docker stop kaoto-frontend