├── Dockerfile ├── README.md ├── cgroup_test.yaml ├── index.jsp ├── test.yaml └── test_app.yaml /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.7 2 | MAINTAINER denverdino@gmail.com 3 | COPY index.jsp /system-info/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/system-info/HEAD/README.md -------------------------------------------------------------------------------- /cgroup_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/system-info/HEAD/cgroup_test.yaml -------------------------------------------------------------------------------- /index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/system-info/HEAD/index.jsp -------------------------------------------------------------------------------- /test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/system-info/HEAD/test.yaml -------------------------------------------------------------------------------- /test_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/system-info/HEAD/test_app.yaml --------------------------------------------------------------------------------