This repo serves as a template for running your own extensions using Docker Compose. To run Kwil with your own extension:
- Create your extension and build it as a Docker image
- In the docker-compose.yaml file, replace
<your_image_here>
with the name of your built docker image. - Run Kwil and your image by running:
make download-and-run
If you want to self-generate an SSL certificate to access the database over HTTPS, instead run:
make download-and-run-ssl
You will then need to access the database on https://localhost:443
You can stop the database using:
make stop
An example of this template in action can be found here.
This repo contains a makefile that with common commands that may be run in this repo. To see all commands, run:
make help