From 194b7064ec36eb2b12f542db6b8171e554c19707 Mon Sep 17 00:00:00 2001 From: Michael Serajnik Date: Wed, 5 Dec 2018 23:54:07 +0100 Subject: [PATCH] feat: Update hydrus server version --- CHANGELOG.md | 4 ++++ README.md | 8 ++++---- docker-entrypoint.sh | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca67512..9c173ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Changed + ++ Updated hydrus server version + ## [1.1.0] - 2018-12-02 ### Changed diff --git a/README.md b/README.md index 8861f9e..0710937 100644 --- a/README.md +++ b/README.md @@ -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 332][hydrus-server-version]. +The latest build runs [hydrus server version 333][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:332 +user@local:~$ docker pull mserajnik/hydrus-server-docker:333 ``` See [here][docker-hub-tags] for all the available version numbers/tags. @@ -153,13 +153,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/v332 +[hydrus-server-version]: https://github.com/hydrusnetwork/hydrus/releases/tag/v333 [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%20332-blue.svg +[hydrus-server-badge]: https://img.shields.io/badge/hydrus%20server-version%20333-blue.svg [travis]: https://travis-ci.com/mserajnik/hydrus-server-docker [travis-badge]: https://travis-ci.com/mserajnik/hydrus-server-docker.svg diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 84d79c0..5a4b511 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -1,10 +1,10 @@ #!/bin/bash -stop_server() { +stop() { ./server stop -d="/data" } -trap "stop_server" SIGTERM +trap "stop" SIGTERM ./server -d="/data" &