From 8cc71657b8b727d9ed01337e56bf1745691beafd Mon Sep 17 00:00:00 2001 From: kev Date: Thu, 10 Dec 2020 15:06:08 +0800 Subject: [PATCH] add jsoneditor --- README.md | 1 + jsoneditor/README.md | 6 ++++++ jsoneditor/docker-compose.yml | 7 +++++++ 3 files changed, 14 insertions(+) create mode 100644 jsoneditor/README.md create mode 100644 jsoneditor/docker-compose.yml diff --git a/README.md b/README.md index 0833f3d..c42be27 100644 --- a/README.md +++ b/README.md @@ -322,6 +322,7 @@ A collection of delicious docker recipes. - [x] inbound-agent - [x] jenkins - [x] jmxtrans/jmxtrans +- [x] djmattyg007/jsoneditor - [x] wurstmeister/kafka - [x] mailgun/kafka-pixy - [x] devopsfaith/krakend diff --git a/jsoneditor/README.md b/jsoneditor/README.md new file mode 100644 index 0000000..b75f8cb --- /dev/null +++ b/jsoneditor/README.md @@ -0,0 +1,6 @@ +jsoneditor +========== + +JSON Editor is a web-based tool that lets you view, edit, format and validate +JSON. It's provided as a library, making it easy to customise and integrate +into existing applications, or to run as a standalone application. diff --git a/jsoneditor/docker-compose.yml b/jsoneditor/docker-compose.yml new file mode 100644 index 0000000..e290263 --- /dev/null +++ b/jsoneditor/docker-compose.yml @@ -0,0 +1,7 @@ +version: "3.8" +services: + jsoneditor: + image: djmattyg007/jsoneditor + ports: + - "8080:80" + restart: unless-stopped