diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9a4a596 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM lipanski/docker-static-website:latest + +COPY dist . + +EXPOSE 4200 + +CMD ["/busybox", "httpd", "-f", "-v", "-p", "4200", "-c", "httpd.conf"] diff --git a/README.md b/README.md index be84052..92cacd8 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ ## How to use it Meiliadmin is an [Ember](https://emberjs.com/) application. There are some way for use it: +1. [Image](https://hub.docker.com/r/kaermorchen/meiliadmin) on DockerHub 1. Just use the [demo](https://kaermorchen.github.io/meiliadmin/) page with your meilisearch instance. 1. Install it in you domain, extract the asset `dist.tgz` from the [latest realese](https://github.com/kaermorchen/meiliadmin/releases/latest). 1. For custom building the app, see the [development page](DEVELOPMENT.md#building). diff --git a/public/httpd.conf b/public/httpd.conf new file mode 100644 index 0000000..f71020e --- /dev/null +++ b/public/httpd.conf @@ -0,0 +1,2 @@ +E404:index.html +I:index.html