59 lines
1.3 KiB
Markdown
59 lines
1.3 KiB
Markdown
Karanage
|
|
========
|
|
|
|
**K**angaroo **A**nd **R**abbit (m)anage is a simple interface to manage system status.
|
|
|
|
- for CPU check
|
|
- for Memory check
|
|
- for swap check
|
|
- for drive check
|
|
- for network check
|
|
- for docker check
|
|
|
|
|
|
License
|
|
=======
|
|
|
|
Copyright karanage-interface Edouard DUPIN
|
|
|
|
Licensed under the Mozilla Public License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.mozilla.org/en-US/MPL/2.0/
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
|
|
Run and install:
|
|
================
|
|
|
|
so simple...
|
|
|
|
```{.bash}
|
|
# start the Bdd interface (no big data > 50Mo)
|
|
cd bdd
|
|
docker-compose up -d
|
|
# start the REST API
|
|
cd back
|
|
docker-compose up -d
|
|
# start the front API
|
|
cd ../front
|
|
docker-compose up -d
|
|
```
|
|
|
|
build the local image:
|
|
|
|
docker pull archlinux:base-devel
|
|
docker pull bellsoft/liberica-openjdk-alpine:latest
|
|
|
|
docker build -t gitea.atria-soft.org/kangaroo-and-rabbit/karanage:latest .
|
|
|
|
docker login gitea.atria-soft.org
|
|
|
|
docker push gitea.atria-soft.org/kangaroo-and-rabbit/karanage:latest
|