From fc9900834a3720a7d2133322d8357e9a1ba23d09 Mon Sep 17 00:00:00 2001 From: Stanislav Romanov Date: Sat, 9 Sep 2023 12:35:34 +0300 Subject: [PATCH 1/2] Add docker build process --- Dockerfile | 7 +++++++ public/httpd.conf | 2 ++ 2 files changed, 9 insertions(+) create mode 100644 Dockerfile create mode 100644 public/httpd.conf 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/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 From 7dbe1a84ae14e973bd91d18e33233edd1889bf9e Mon Sep 17 00:00:00 2001 From: Stanislav Romanov Date: Sat, 16 Sep 2023 08:00:52 +0300 Subject: [PATCH 2/2] Update how to use it --- README.md | 1 + 1 file changed, 1 insertion(+) 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).