Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.18.1 #3094

Merged
merged 1 commit into from
Nov 8, 2024
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
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG SERVER_VERSION=c060010a
ARG SERVER_VERSION=v0.18.1

# Builder image to compile the website
FROM ubuntu AS builder
Expand Down Expand Up @@ -27,8 +27,7 @@ RUN /usr/bin/yarn --cwd website \
&& /usr/bin/yarn --cwd website build

# Main image derived from openvsx-server
# FROM ghcr.io/eclipse/openvsx-server:${SERVER_VERSION}
FROM docker.io/amvanbaren/openvsx-server:${SERVER_VERSION}
FROM ghcr.io/eclipse/openvsx-server:${SERVER_VERSION}
ARG SERVER_VERSION

COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/
Expand Down
5 changes: 4 additions & 1 deletion configuration/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ server:
spring:
application:
name: openvsx-server
autoconfigure:
# don't send traces to Zipkin
exclude: org.springframework.boot.actuate.autoconfigure.tracing.zipkin.ZipkinAutoConfiguration
config:
import: file:${DEPLOYMENT_CONFIG}
cache:
Expand Down Expand Up @@ -81,7 +84,7 @@ management:
exposure:
include:
- health
- prometheus
# - prometheus
tracing:
sampling:
probability: 0.1
Expand Down