From a84ea60d118f8ebc811fc1691758f514c1f3430b Mon Sep 17 00:00:00 2001 From: Eduard Nitu Date: Fri, 2 Jan 2026 11:26:54 +0100 Subject: [PATCH] fix: docker start issues --- docker-compose.full.yml | 6 +++--- docker/nginx/nginx.conf | 13 +++++-------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/docker-compose.full.yml b/docker-compose.full.yml index 3efae1e..c475558 100644 --- a/docker-compose.full.yml +++ b/docker-compose.full.yml @@ -62,7 +62,7 @@ services: file: docker-services.yml service: app command: ["uwsgi /opt/invenio/var/instance/uwsgi_ui.ini"] - image: instance:latest + image: ghcr.io/sharedrdm/instance:official-v13-basic ports: - "5000" volumes: @@ -76,7 +76,7 @@ services: file: docker-services.yml service: app command: ["uwsgi /opt/invenio/var/instance/uwsgi_rest.ini"] - image: instance:latest + image: ghcr.io/sharedrdm/instance:official-v13-basic ports: - "5000" volumes: @@ -89,7 +89,7 @@ services: file: docker-services.yml service: app command: ["celery -A invenio_app.celery worker --beat --loglevel=INFO"] - image: instance:latest + image: ghcr.io/sharedrdm/instance:official-v13-basic volumes: - uploaded_data:/opt/invenio/var/instance/data depends_on: diff --git a/docker/nginx/nginx.conf b/docker/nginx/nginx.conf index 64be9cb..dad57d8 100644 --- a/docker/nginx/nginx.conf +++ b/docker/nginx/nginx.conf @@ -12,6 +12,11 @@ http { include /etc/nginx/mime.types; default_type application/octet-stream; + types { + # Tell nginx that ECMAScript modules are also JS + application/javascript js mjs; + } + # Standard log format log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' @@ -74,11 +79,3 @@ http { include /etc/nginx/conf.d/*.conf; } - -include /etc/nginx/mime.types; -default_type application/octet-stream; -types { - # Tell nginx that ECMAScript modules are also JS - application/javascript js mjs; -} -