Adding some docker and terraform to it ... wip

This commit is contained in:
Joe Tretter
2022-09-29 13:39:46 -05:00
parent e359485d94
commit b50c7e9ddc
15 changed files with 428 additions and 182 deletions

19
README Normal file
View File

@@ -0,0 +1,19 @@
I am taking this as a test project for docker and terraform too...
for the docker imaging look at: https://www.fosstechnix.com/how-to-create-docker-image-for-node-js-application/
The docker image can be built with
docker build -t dumbserver .
the image then can be extracted with
docker image save -o dumbserver.image.tar dumbserver
on the target machine it can be imported with
docker image load -i dumbserer.image.tar
and running a container with the image id done via:
docker run -p 1280:1280 dumbserver
(Port 1280 is what it listens on)
At this stage, terraform will create an ssh accessable server (key is in "terraformtest1.ppk") - tutorial used for that: https://medium.com/@hmalgewatta/setting-up-an-aws-ec2-instance-with-ssh-access-using-terraform-c336c812322f
what is required next is to install docker on the server and deploy the image.