Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions scripts/docker/build/dms-frontend/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,10 @@ http {
}

location /socket.io/ {
proxy_pass http://dms-backend-socket
proxy_pass http://dms-backend-socket;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_read_timeout 3600s;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
Expand Down
8 changes: 4 additions & 4 deletions scripts/docker/local/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ services:
networks:
- dms
dms-backend:
image: basedt/dms-backend
image: ghcr.io/basedt/dms/dms-backend
profiles: [ "prod" ]
container_name: dms_backend
volumes:
- ./application-docker.yml:/opt/app/dms/application-docker.yml
# volumes:
# - ./application-docker.yml:/opt/app/dms/application-docker.yml
depends_on:
redis:
condition: service_started
Expand All @@ -101,7 +101,7 @@ services:
networks:
- dms
dms-frontend:
image: basedt/dms-frontend
image: ghcr.io/basedt/dms/dms-frontend
profiles: [ "prod" ]
container_name: dms_frontend
depends_on:
Expand Down