From 05174a4832a748bd5474a63d1c2810c67883a3ee Mon Sep 17 00:00:00 2001 From: Wojciech Czop Date: Fri, 16 Apr 2021 17:29:57 +0200 Subject: [PATCH] Docker config added --- Dockerfile | 8 ++++++++ docker-compose.yml | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 Dockerfile create mode 100644 docker-compose.yml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e12b135 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM nginx:stable-alpine + +COPY ./css/ /usr/share/nginx/html/css/ +COPY ./index.html /usr/share/nginx/html +COPY ./logo.png /usr/share/nginx/html +COPY ./styles.css /usr/share/nginx/html +COPY ./common.css /usr/share/nginx/html +COPY ./favicon.ico /usr/share/nginx/html \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..80f0154 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,9 @@ +version: "3" + +services: + tools-homepage: + build: . + container_name: tools-homepage + image: tools-homepage + ports: + - 8085:80 \ No newline at end of file