1
0
Fork 0
mirror of https://github.com/imtbl/hydrus-server-docker synced 2024-05-16 18:43:21 +12:00

fix: Roll hydrus server version back to 334

This commit is contained in:
Michael Serajnik 2019-01-13 23:33:57 +01:00
parent a020c26b99
commit 73e51838b4
3 changed files with 11 additions and 16 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
### Fixed
+ Rolled hydrus server version back to 334 due to issues with 335
## [1.4.0] - 2019-01-13
### Changed

View file

@ -17,17 +17,14 @@ RUN \
WORKDIR /usr/src/app
RUN apt-get update && \
apt-get install -y ca-certificates curl ffmpeg wget --no-install-recommends && \
apt-get install -y ca-certificates ffmpeg wget --no-install-recommends && \
rm -rf /var/lib/apt/lists/* && \
wget "https://www.github.com$( \
curl -sL https://github.com/hydrusnetwork/hydrus/releases/latest \
| grep 'Linux.-.Executable.tar.gz' \
| sed -n 's/.*href="\([^"]*\).*/\1/p')" && \
wget "https://github.com/hydrusnetwork/hydrus/releases/download/v334/Hydrus.Network.334.-.Linux.-.Executable.tar.gz" && \
tar zxvf $(ls | grep "Linux.-.Executable.tar.gz") --strip-components 1 && \
rm $(ls | grep "Linux.-.Executable.tar.gz") && \
chown -R hydrus:hydrus /usr/src/app && \
mkdir /data && chown -R hydrus:hydrus /data && \
apt-get remove ca-certificates curl wget -y && \
apt-get remove ca-certificates wget -y && \
apt-get autoremove -y
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint

View file

@ -7,7 +7,7 @@ This is a simple Debian-based Docker setup for running the compiled version of
run hydrus server together with [hydrusrv][hydrusrv], but can of course also be
used on its own.
The latest build runs [hydrus server version 335][hydrus-server-version].
The latest build runs [hydrus server version 334][hydrus-server-version].
## Table of contents
@ -35,7 +35,7 @@ By default, this will pull the latest build. To specify an image with a
specific version of hydrus server, provide the version number as tag, e.g.:
```zsh
user@local:~$ docker pull mserajnik/hydrus-server-docker:335
user@local:~$ docker pull mserajnik/hydrus-server-docker:334
```
See [here][docker-hub-tags] for all the available version numbers/tags.
@ -116,12 +116,6 @@ host.
+ The image also includes the hydrus client due to the compiled releases always
including both it and the server. This adds quite a bit of size to the image.
+ To upgrade hydrus server to a new version, you need to either make a new
build yourself (when using `--no-cache` it will automatically download the
latest version of hydrus server), upgrade it directly inside the running
container or wait until I make a new release. I will try to keep up with
every new hydrus release (usually weekly on Wednesdays), but cannot make any
promises.
## Donate
@ -153,13 +147,13 @@ You are welcome to help out!
[hydrus-server]: http://hydrusnetwork.github.io/hydrus/
[hydrusrv]: https://github.com/mserajnik/hydrusrv
[hydrus-server-version]: https://github.com/hydrusnetwork/hydrus/releases/tag/v335
[hydrus-server-version]: https://github.com/hydrusnetwork/hydrus/releases/tag/v334
[docker-hub]: https://hub.docker.com/r/mserajnik/hydrus-server-docker/
[docker-hub-tags]: https://hub.docker.com/r/mserajnik/hydrus-server-docker/tags/
[docker]: https://www.docker.com/
[semantic-versioning]: https://semver.org/
[hydrus-server-badge]: https://img.shields.io/badge/hydrus%20server-version%20335-blue.svg
[hydrus-server-badge]: https://img.shields.io/badge/hydrus%20server-version%20334-blue.svg
[travis]: https://travis-ci.com/mserajnik/hydrus-server-docker
[travis-badge]: https://travis-ci.com/mserajnik/hydrus-server-docker.svg