Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 304 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 304 Bytes

Homework

In order to build the container image:

docker build -t vuejs-hw .

In order to run the container:

docker run -it --rm --name vuejs-hw -v$(pwd):/usr/project -p8080:8080 vuejs-hw

In order to exit container:

# either run command
exit
# or input EOF
Ctrl + D