Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Latest commit

 

History

History
16 lines (14 loc) · 632 Bytes

readme.md

File metadata and controls

16 lines (14 loc) · 632 Bytes

Build Status Node test

Build docker image.

docker build . -t aeolus/hello-world

Run a docker container with the newly built image and link the external port 49160 to container port 8080.

docker run -p 5500:8080 -d aeolus/hello-world

To automatically start the container when docker is started unless the container was manually stopped add --restart unless-stopped.

docker run -p 5500:8080 -d --restart unless-stopped aeolus/hello-world