Skip to content

Commit

Permalink
Undo using only default namespaced / and /server
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmajchrak committed Nov 21, 2024
1 parent e7e8185 commit 3d052e6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@ services:
DSPACE_UI_HOST: dspace-angular
# Use only `4000`, not the {UI_PORT} from the .env because in the container it is always `4000`
DSPACE_UI_PORT: 4000
# Use only `/`, not the {DSPACE_UI_NAMESPACE} from the .env because in the container it is always `/`
DSPACE_UI_NAMESPACE: /
DSPACE_UI_NAMESPACE: ${DSPACE_UI_NAMESPACE:-/}
DSPACE_REST_SSL: ${DSPACE_SSL:-false}
DSPACE_REST_HOST: ${DSPACE_HOST:-localhost}
DSPACE_REST_PORT: ${DSPACE_REST_PORT:-8080}
# Use only `/server`, not the {DSPACE_UI_NAMESPACE} from the .env because in the container it is always `/server`
DSPACE_REST_NAMESPACE: /server
DSPACE_REST_NAMESPACE: ${DSPACE_REST_NAMESPACE:-/server}
image: ${DSPACE_UI_IMAGE:-dataquest/dspace-angular:dspace-7_x}
volumes:
- ./config.prod.yml:/app/config/config.prod.yml
Expand Down

0 comments on commit 3d052e6

Please sign in to comment.