Allow setup with Docker

This commit is contained in:
TheAssassin 2024-04-21 16:53:16 +02:00
parent dc5933757a
commit 084e8acc7e
4 changed files with 17 additions and 0 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
.git/
Dockerfile
LICENSE-*

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
docker-compose.yml*
!docker-compose.yml.example

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM nginx:1.24.0-alpine
COPY . /usr/share/nginx/html

View File

@ -0,0 +1,7 @@
version: "2"
services:
nginx:
build: .
ports:
- 8000:80