Add Docker
This commit is contained in:
parent
745182386f
commit
779a702c87
15 changed files with 396 additions and 0 deletions
9
tools/docker/nginx/Dockerfile
Normal file
9
tools/docker/nginx/Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
|||
FROM nginx:1
|
||||
|
||||
RUN rm /etc/nginx/conf.d/default.conf
|
||||
|
||||
COPY tools/docker/nginx/conf.d/* /etc/nginx/conf.d/
|
||||
|
||||
COPY web /srv/app/web
|
||||
|
||||
WORKDIR /srv/app/web
|
Reference in a new issue