create-containerized-app-template
v0.1.2
Published
provides a configured application template containerized via docker
Downloads
183
Readme
Create Containerized App Template (CCrATe)
This project provides a straightforward Docker file for new and experienced users.
The Docker file generates a container and installs a fully configured app template.
install Docker
reference the docs
install CCrATe
first install globally
npm install -g create-containerized-app-template
then create your project
npx create-containerized-app-template --name={my-project}
build and run container
build image ccrate
npm run build
run container ccrate-app
npm run dev
open http://localhost:3000 in browser
the containerized app
access the container
npm run access
reference create-application-template to learn more about the app
other Docker commands
view container info
docker container inspect ccrate-app
list running containers
docker container ls
list all containers (including idle)
docker container ls -a
list images
docker images
remove container
docker container rm ccrate-app
remove image
docker rmi ccrate:latest