Update many, many packages in order to get rid of warning from pkgdev / pkgcheck.
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
parent
0f6733533a
commit
52bf607626
86 changed files with 650 additions and 770 deletions
|
@ -1,17 +0,0 @@
|
|||
# Reposilite docker configuration file.
|
||||
# Required string value configures ports to publish for docker: space-separated
|
||||
# list of <hostport>:<containerport> tuples.
|
||||
DOCKER_PUBLISH="8080:80 8443:443"
|
||||
|
||||
# Put any Java-specific configuration in the JAVA_OPTS environment
|
||||
# variable, e.g. JAVA_OPTS='-Xmx64M'.
|
||||
# For details and available config options, see
|
||||
# https://reposilite.com/docs/docker
|
||||
JAVA_OPTS=''
|
||||
|
||||
# Do NOT remove or change the --config option; you may add more options, though.
|
||||
# For available options, see https://reposilite.com/docs/install#properties
|
||||
REPOSILITE_OPTS="--config=/app/reposilite-host.cdn"
|
||||
|
||||
# Optional string value of extra args passed verbatim to the docker command.
|
||||
DOCKER_DRONE_EXTRA_ARGS=""
|
|
@ -1,71 +0,0 @@
|
|||
# ~~~~~~~~~~~~~~~~~~~~~~ #
|
||||
# Reposilite #
|
||||
# ~~~~~~~~~~~~~~~~~~~~~~ #
|
||||
|
||||
# Hostname
|
||||
hostname: 0.0.0.0
|
||||
# Port to bind
|
||||
port: 80
|
||||
# Custom base path
|
||||
basePath: /
|
||||
# Any kind of proxy services change real ip.
|
||||
# The origin ip should be available in one of the headers.
|
||||
# Nginx: X-Forwarded-For
|
||||
# Cloudflare: CF-Connecting-IP
|
||||
# Popular: X-Real-IP
|
||||
forwardedIp: X-Forwarded-For
|
||||
# Enable Swagger (/swagger-docs) and Swagger UI (/swagger)
|
||||
swagger: false
|
||||
# Debug
|
||||
debugEnabled: false
|
||||
|
||||
# Support encrypted connections
|
||||
sslEnabled: false
|
||||
# SSL port to bind
|
||||
sslPort: 443
|
||||
# Key store file to use.
|
||||
# You can specify absolute path to the given file or use ${WORKING_DIRECTORY} variable.
|
||||
keyStorePath: ${WORKING_DIRECTORY}/keystore.jks
|
||||
# Key store password to use
|
||||
keyStorePassword:
|
||||
# Redirect http traffic to https
|
||||
enforceSsl: false
|
||||
|
||||
# Control the maximum amount of data assigned to Reposilite instance
|
||||
# Supported formats: 90%, 500MB, 10GB
|
||||
diskQuota: 10GB
|
||||
# List of supported Maven repositories.
|
||||
# First directory on the list is the main (primary) repository.
|
||||
# Tu mark repository as private, prefix its name with a dot, e.g. ".private"
|
||||
repositories [
|
||||
releases
|
||||
snapshots
|
||||
]
|
||||
# Allow to omit name of the main repository in request
|
||||
# e.g. /org/panda-lang/reposilite will be redirected to /releases/org/panda-lang/reposilite
|
||||
rewritePathsEnabled: true
|
||||
# Accept deployment connections
|
||||
deployEnabled: true
|
||||
|
||||
# List of proxied repositories.
|
||||
# Reposilite will search for an artifact in remote repositories listed below,
|
||||
# if the requested artifact was not found.
|
||||
proxied [
|
||||
]
|
||||
# Reposilite can store proxied artifacts locally to reduce response time and improve stability
|
||||
storeProxied: true
|
||||
# Proxying is disabled by default in private repositories because of the security policy.
|
||||
# Enabling this feature may expose private data like i.e. artifact name used in your company.
|
||||
proxyPrivate: false
|
||||
# How long Reposilite can wait for establishing the connection with a remote host. (In seconds)
|
||||
proxyConnectTimeout: 3
|
||||
# How long Reposilite can read data from remote proxy. (In seconds)
|
||||
# Increasing this value may be required in case of proxying slow remote repositories.
|
||||
proxyReadTimeout: 15
|
||||
|
||||
# Title displayed by frontend
|
||||
title: #onlypanda
|
||||
# Description displayed by frontend
|
||||
description: Public Maven repository hosted through the Reposilite
|
||||
# Accent color used by frontend
|
||||
accentColor: #2fd4aa
|
|
@ -1,23 +0,0 @@
|
|||
[Unit]
|
||||
Description=Reposilite Maven Repository hosting server
|
||||
Documentation=https://reposilite.com/docs/about
|
||||
|
||||
After=docker.service
|
||||
After=network.target
|
||||
Requires=docker.service
|
||||
Requires=network.target
|
||||
|
||||
[Service]
|
||||
User=reposilite
|
||||
Group=reposilite
|
||||
|
||||
Environment="DOCKER_REPOSILITE_CONFIG_FILE=/etc/reposilite/app.ini"
|
||||
|
||||
ExecStart=reposilite.sh
|
||||
ExecStop=docker container stop reposilite
|
||||
ExecStopPost=docker container rm reposilite
|
||||
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -1,27 +0,0 @@
|
|||
#!/bin/sh
|
||||
# $DOCKER_REPOSILITE_CONFIG_FILE contains path to the config file
|
||||
|
||||
if [[ -z "${DOCKER_REPOSILITE_CONFIG_FILE}" ]] ; then
|
||||
echo "DOCKER_REPOSILITE_CONFIG_FILE not set!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
. "${DOCKER_REPOSILITE_CONFIG_FILE}"
|
||||
|
||||
docker_args="--env=REPOSILITE_OPTS=${REPOSILITE_OPTS}"
|
||||
docker_args="${docker_args} --env=JAVA_OPTS=${JAVA_OPTS}"
|
||||
|
||||
for p in ${DOCKER_PUBLISH} ; do
|
||||
docker_args="${docker_args} --publish=${p}"
|
||||
done
|
||||
|
||||
docker_args="${docker_args} ${DOCKER_REPOSILITE_EXTRA_ARGS}"
|
||||
|
||||
docker run \
|
||||
--mount type=bind,source=/etc/reposilite/reposilite.cdn,target=/app/reposilite-host.cdn \
|
||||
--volume=reposilite-data:/app/data \
|
||||
${docker_args} \
|
||||
--restart=always \
|
||||
--detach=false \
|
||||
--name=reposilite \
|
||||
dzikoysk/reposilite:<VERSION>
|
Loading…
Add table
Add a link
Reference in a new issue