mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-08 06:53:00 -04:00
616 B
Executable file
616 B
Executable file
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