https://github.com/leafney/node-hello
A Nodejs demo web application for show login user and hostname
https://github.com/leafney/node-hello
docker nodejs
Last synced: 3 months ago
JSON representation
A Nodejs demo web application for show login user and hostname
- Host: GitHub
- URL: https://github.com/leafney/node-hello
- Owner: leafney
- Created: 2019-05-17T10:53:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-29T15:08:42.000Z (over 5 years ago)
- Last Synced: 2025-01-14T15:23:40.769Z (5 months ago)
- Topics: docker, nodejs
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### node-hello
Default Port: `8080`
A Nodejs demo web application for show login user and hostname
**Attention! Donot use it in a production environment.**
use with docker:
```
docker pull leafney/node-hello
```use for k8s/k3s:
```
apiVersion: v1
kind: Pod
metadata:
name: nodejs-pod
labels:
app: Pod
spec:
containers:
- name: nodejs
image: leafney/node-hello
ports:
- containerPort: 8080
```