Allow setup with Docker
This commit is contained in:
parent
dc5933757a
commit
084e8acc7e
|
@ -0,0 +1,3 @@
|
||||||
|
.git/
|
||||||
|
Dockerfile
|
||||||
|
LICENSE-*
|
|
@ -0,0 +1,2 @@
|
||||||
|
docker-compose.yml*
|
||||||
|
!docker-compose.yml.example
|
|
@ -0,0 +1,5 @@
|
||||||
|
FROM nginx:1.24.0-alpine
|
||||||
|
|
||||||
|
COPY . /usr/share/nginx/html
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
version: "2"
|
||||||
|
|
||||||
|
services:
|
||||||
|
nginx:
|
||||||
|
build: .
|
||||||
|
ports:
|
||||||
|
- 8000:80
|
Loading…
Reference in New Issue