added docker files

This commit is contained in:
Nils Stinnesbeck 2021-05-17 15:17:09 +02:00
parent 1fb05f1daa
commit 2ab79806d6
Signed by: nils
GPG Key ID: 86D4882C6C6CA48B
2 changed files with 8 additions and 0 deletions

2
Dockerfile Normal file
View File

@ -0,0 +1,2 @@
FROM nginx:1.20.0
COPY public /usr/share/nginx/html

6
docker-compose.yml Normal file
View File

@ -0,0 +1,6 @@
version: '3.9'
services:
website:
build: .
ports:
- 80:80