create-containerized-app-template
v0.16.0
Published
provides a configured application template containerized via docker
Downloads
11
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-templatethen create your project
npx create-containerized-app-template --name={my-project}build and run container
build image ccrate
npm run buildrun container ccrate-app
npm run devopen http://localhost:3000 in browser
the containerized app
access the container
npm run accessreference create-application-template to learn more about the app
other Docker commands
view container info
docker container inspect ccrate-applist running containers
docker container lslist all containers (including idle)
docker container ls -alist images
docker imagesremove container
docker container rm ccrate-appremove image
docker rmi ccrate:latest