Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/brianpursley/system-info
- Owner: brianpursley
- License: mit
- Created: 2020-01-15T20:02:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-08T18:43:23.000Z (8 months ago)
- Last Synced: 2024-05-08T19:53:00.321Z (8 months ago)
- Topics: docker-container
- Language: JavaScript
- Size: 146 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```