Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brianpursley/system-info

A simple docker container that writes out system information for testing purposes
https://github.com/brianpursley/system-info

docker-container

Last synced: about 1 month ago
JSON representation

A simple docker container that writes out system information for testing purposes

Awesome Lists containing this project

README

        

# system-info

A simple docker container that writes out system information for testing purposes.

Default port is 80. You can set a custom port using the `PORT` environment variable.

![Screenshot](https://raw.githubusercontent.com/brianpursley/system-info/master/screenshot.png)

# Usage

## Docker

```bash
docker run -d -p 8080:80 --name sysinfo brianpursley/system-info
```

## Kubernetes

```bash
kubectl run sysinfo --image=brianpursley/system-info
kubectl wait --for=condition=Ready pod/sysinfo
kubectl port-forward sysinfo 8080:80
```