Docker config added
This commit is contained in:
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@@ -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
|
||||
9
docker-compose.yml
Normal file
9
docker-compose.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
tools-homepage:
|
||||
build: .
|
||||
container_name: tools-homepage
|
||||
image: tools-homepage
|
||||
ports:
|
||||
- 8085:80
|
||||
Reference in New Issue
Block a user