1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-07 10:55:43 -05:00

run admin on port 5000

This commit is contained in:
Kyle Spearrin
2018-03-23 22:46:09 -04:00
parent 671492ad71
commit 5c3eca264b
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
FROM microsoft/aspnetcore:2.0.5 FROM microsoft/aspnetcore:2.0.5
WORKDIR /app WORKDIR /app
EXPOSE 80 EXPOSE 5000
COPY obj/Docker/publish . COPY obj/Docker/publish .
COPY entrypoint.sh / COPY entrypoint.sh /

View File

@ -195,7 +195,7 @@ server {{
}} }}
location /admin/ {{ location /admin/ {{
proxy_pass http://admin/; proxy_pass http://admin:5000/
}} }}
}}"); }}");
} }