Allow setup with Docker
This commit is contained in:
parent
dc5933757a
commit
b2643b1dbe
4 changed files with 17 additions and 0 deletions
3
.dockerignore
Normal file
3
.dockerignore
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.git/
|
||||||
|
Dockerfile
|
||||||
|
LICENSE-*
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
docker-compose.yml*
|
||||||
|
!docker-compose.yml.example
|
5
Dockerfile
Normal file
5
Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
FROM nginx:1.24.0-alpine
|
||||||
|
|
||||||
|
COPY . /usr/share/nginx/html
|
||||||
|
|
||||||
|
|
7
docker-compose.yml.example
Normal file
7
docker-compose.yml.example
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
version: "2"
|
||||||
|
|
||||||
|
services:
|
||||||
|
nginx:
|
||||||
|
build: .
|
||||||
|
ports:
|
||||||
|
- 8000:80
|
Loading…
Reference in a new issue