File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ services:
264
264
context : dockerfiles
265
265
dockerfile : Dockerfile.browser
266
266
ports :
267
- - " ${MY_DOCKER_IP:-127.0.0.1}:8084:8080 "
267
+ - " ${MY_DOCKER_IP:-127.0.0.1}:8085:8085 "
268
268
depends_on :
269
269
- stac
270
270
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ services:
138
138
context : dockerfiles
139
139
dockerfile : Dockerfile.browser
140
140
ports :
141
- - " ${MY_DOCKER_IP:-127.0.0.1}:8084:8080 "
141
+ - " ${MY_DOCKER_IP:-127.0.0.1}:8085:8085 "
142
142
depends_on :
143
143
- stac-fastapi
144
144
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ FROM nginx:1-alpine-slim
21
21
COPY --from=build-step /app/dist /usr/share/nginx/html
22
22
COPY --from=build-step /app/config.schema.json /etc/nginx/conf.d/config.schema.json
23
23
24
- # change default port to 8080
24
+ # change default port to 8084
25
25
RUN apk add jq pcre-tools && \
26
- sed -i 's/\s*listen\s*80;/ listen 8080 ;/' /etc/nginx/conf.d/default.conf && \
26
+ sed -i 's/\s*listen\s*80;/ listen 8084 ;/' /etc/nginx/conf.d/default.conf && \
27
27
sed -i 's/\s*location \/ {/ location \/ {\n try_files $uri $uri\/ \/index.html;/' /etc/nginx/conf.d/default.conf
28
28
29
- EXPOSE 8080
29
+ EXPOSE 8084
30
30
31
31
STOPSIGNAL SIGTERM
32
32
You can’t perform that action at this time.
0 commit comments