Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rongfengliang/lapis-docker
lapis-docker
https://github.com/rongfengliang/lapis-docker
docker docker-compose grafana lapis openresty prometheus
Last synced: 5 days ago
JSON representation
lapis-docker
- Host: GitHub
- URL: https://github.com/rongfengliang/lapis-docker
- Owner: rongfengliang
- Created: 2018-12-05T12:33:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-31T08:02:45.000Z (10 months ago)
- Last Synced: 2024-01-31T09:26:53.154Z (10 months ago)
- Topics: docker, docker-compose, grafana, lapis, openresty, prometheus
- Language: Lua
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lapis openresty docker image
## how to run
* build base image
```code
docker build -t dalongrong/lapis-1.7.0 -f Dockerfile-base .or use build image
dalongrong/lapis-1.7.0
```* demo running
```code
docker-compose up -d
```* access web page
```code
open http://localhost:8080
```## with metric monitor docker image
* build base image
```code
docker build -t dalongrong/lapis-1.7.0:metrics -f Dockerfile-base-metrics .
```* metrics config(nginx conf)
```diff
http {
include mime.types;
+ vhost_traffic_status_zone;+ location /status {
+ vhost_traffic_status_display;
+ vhost_traffic_status_display_format html;
+ }
```* metric watch
```code
open http://localhost:8080/status/format/prometheus
```