This commit is contained in:
parent
e0dd5ea789
commit
8e95cec104
5 changed files with 300 additions and 0 deletions
11
Dockerfile-nginx
Normal file
11
Dockerfile-nginx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM nginx:stable-alpine
|
||||
|
||||
ENV HOST_FRONTEND=frontend:8080 HOST_ADMIN=admin:8081 HOST_DASHBOARD=dashboard:8082 HOST_QA=qa:8083 \
|
||||
PATH_FILES=/srv/FILES PATH_STATIC=/srv/htdocs-frontend PATH_SETTINGS=/srv/SETTINGS PATH_TEAMS=/srv/TEAMS
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
COPY configs/fic-auth-docker.conf /etc/nginx/auth.conf
|
||||
COPY configs/nginx-docker.conf /etc/nginx/templates/default.conf.template
|
||||
|
||||
COPY frontend/static /srv/htdocs-frontend
|
||||
Reference in a new issue