From c8eed20814069069b043f4b6a6f9de9c9b412921 Mon Sep 17 00:00:00 2001 From: Joey Kimsey Date: Wed, 14 Aug 2024 17:56:50 -0400 Subject: [PATCH] Readme Updates --- docker/ttp-apache/README.md | 14 +++++++------- docker/ttp-nginx/README.md | 16 ++++++++-------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docker/ttp-apache/README.md b/docker/ttp-apache/README.md index bcb25d5..a104a0c 100644 --- a/docker/ttp-apache/README.md +++ b/docker/ttp-apache/README.md @@ -1,19 +1,19 @@ -Build the image +# TheTempusProject Apache Docker Image + +This image will build an apache webserver off php and use composer to clone the project to create a webserver TTP App. + +## Build the image ``` docker build -t thetempusproject/ttp-apache:latest . docker build --no-cache -t thetempusproject/ttp-apache:latest . ``` - - -Set the proper tag for dockerhub +## Set the proper tag for dockerhub (in cases where you need to build your own image) ``` docker tag ttp-apache:latest thetempusproject/ttp-apache:latest ``` - - -Run the image +## Run the image ``` docker run -d -p 80:80 thetempusproject/ttp-apache ``` \ No newline at end of file diff --git a/docker/ttp-nginx/README.md b/docker/ttp-nginx/README.md index 76c7657..57bee84 100644 --- a/docker/ttp-nginx/README.md +++ b/docker/ttp-nginx/README.md @@ -1,19 +1,19 @@ -Build the image +# TheTempusProject Nginx Docker Image + +This image will build an nginx webserver off php and use composer to clone the project to create a webserver TTP App. + +## Build the image ``` docker build -t thetempusproject/ttp-nginx:latest . docker build --no-cache -t thetempusproject/ttp-nginx:latest . ``` - - -Set the proper tag for dockerhub +## Set the proper tag for dockerhub (in cases where you need to build your own image) ``` -docker tag ttp-nginx:latest thetempusproject/ttp-nginx:latest +docker tag thetempusproject/ttp-nginx:latest /ttp-nginx:latest ``` - - -Run the image +## Run the image ``` docker run -d -p 8000:80 thetempusproject/ttp-nginx ``` \ No newline at end of file