https://github.com/edwardsharp/helloworld
really simple docker container test
https://github.com/edwardsharp/helloworld
Last synced: about 1 year ago
JSON representation
really simple docker container test
- Host: GitHub
- URL: https://github.com/edwardsharp/helloworld
- Owner: edwardsharp
- Created: 2020-04-26T17:16:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T14:38:30.000Z (over 3 years ago)
- Last Synced: 2025-02-17T11:45:32.603Z (over 1 year ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# helloworld
really simple docker container test.
this container just runs an express HTTP server that prints the value of `HELLO` and `APP_VERSION` (see package.json) environment variables along with this funny little sun-glasses ASCII art:
```
(•_•)
( •_•)>⌐■-■
(⌐■_■)
hello world!
```
### docker notez
see [3dwardsharp/helloworld](https://hub.docker.com/r/3dwardsharp/helloworld/) on docker HUB.
```
docker build -t 3dwardsharp/helloworld .
docker run -p 3000:3000 --env PORT=3000 --env HELLO=ohai 3dwardsharp/helloworld
```