Barebones Alpine Linux image containing Zeit's
now
CLI using
mhart/alpine-node
's latest LTS slim
image as a base.
Images are available at the
meatwallace/alpine-zeit-now
Dockerhub repository, tagged meatwallace/alpine-zeit-now:<version>
. All
versions >=15.2.0 including canary releases should be available, and are <
100MB uncompressed.
To deploy your current working directory using the now
CLI, simply run:
docker run -it --rm --volume="$PWD:/root/project" meatwallace/alpine-zeit-now now
All versions >=15.3.0 allow for simple usage by including the function below in
your ~/.bashrc
or equivelant for your shell:
now() {
# mounts your current working directory & your machines .now config folder
docker run -it --rm \
--volume="$PWD:/root/project \
--volume="$HOME/.now:/root/.now" \
meatwallace/alpine-zeit-now now "$@"
}
This project has adopted a Code of Conduct that project participants are expected to adhere to.
Read the contributing guide to learn about how to propose and contribute changes to this project.
This project is MIT licensed.