Spaces:
Sleeping
Sleeping
Nicky Nicolson
commited on
Commit
·
57632c6
1
Parent(s):
eca0042
try to listen on port 8080
Browse files- Dockerfile +1 -1
- nginx/etc.nginx_nginx.conf +1 -1
Dockerfile
CHANGED
|
@@ -47,7 +47,7 @@ COPY --chown=user ./_env_config/stg_dev/utl_dkr_preRun.sh ./scripts/docker/
|
|
| 47 |
RUN chmod +x ./scripts/docker/utl_dkr_preRun.sh
|
| 48 |
|
| 49 |
USER user
|
| 50 |
-
EXPOSE
|
| 51 |
ENTRYPOINT [ "./scripts/docker/utl_dkr_preRun.sh" ]
|
| 52 |
|
| 53 |
# CMD ["nginx", "-g", "daemon off;"]
|
|
|
|
| 47 |
RUN chmod +x ./scripts/docker/utl_dkr_preRun.sh
|
| 48 |
|
| 49 |
USER user
|
| 50 |
+
EXPOSE 8080
|
| 51 |
ENTRYPOINT [ "./scripts/docker/utl_dkr_preRun.sh" ]
|
| 52 |
|
| 53 |
# CMD ["nginx", "-g", "daemon off;"]
|
nginx/etc.nginx_nginx.conf
CHANGED
|
@@ -12,7 +12,7 @@ http {
|
|
| 12 |
default_type application/octet-stream;
|
| 13 |
|
| 14 |
server {
|
| 15 |
-
listen
|
| 16 |
server_name localhost;
|
| 17 |
root /usr/share/nginx/html;
|
| 18 |
index index.html;
|
|
|
|
| 12 |
default_type application/octet-stream;
|
| 13 |
|
| 14 |
server {
|
| 15 |
+
listen 8080;
|
| 16 |
server_name localhost;
|
| 17 |
root /usr/share/nginx/html;
|
| 18 |
index index.html;
|