mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-11-24 07:03:33 -05:00
| .. | ||
| Dockerfile | ||
| Makefile | ||
| node_example_kube_config.yaml | ||
| README.md | ||
| server.js | ||
Spinning up a Hello World node server in docker
Build the image:
$ make build:
Run the container:
$ make run
docker build -t node_app_test .
Check whether the server worked:
$ make curl
Check container's status:
$ make status
Other useful commands
Exec inside the container:
$ docker exec -i -t <container name from status> /bin/bash
Check images in disk:
$ docker images