diff --git a/CHANGELOG.md b/CHANGELOG.md index 39221f6..6893da8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [v0.1.1-alpha] - 2016-12-18 + +Set the working directory for the systemd services ### Changed - Set the working directory (see: https://www.freedesktop.org/software/systemd/man/systemd.exec.html) for the docker-compose systemd services. Otherwise docker-compose cannot locate `env_file`s (see: https://docs.docker.com/compose/compose-file/#/envfile) diff --git a/README.md b/README.md index bac5a8e..a8edd60 100644 --- a/README.md +++ b/README.md @@ -61,13 +61,13 @@ For the `uninstall` action **dcsg** remove the systemd service it created earlie You can download pre-built binaries for Linux (64bit, ARM 5, ARM 6 and ARM 7) from [github.com » andreaskoch » dcsg » releases](/releases/latest): -- [Download for dcsg (Linux 64bit)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_amd64) -- [Download for dcsg (Linux ARM5)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_arm5) -- [Download for dcsg (Linux ARM6)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_arm6) -- [Download for dcsg (Linux ARM7)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_arm7) +- [Download for dcsg (Linux 64bit)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_amd64) +- [Download for dcsg (Linux ARM5)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_arm5) +- [Download for dcsg (Linux ARM6)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_arm6) +- [Download for dcsg (Linux ARM7)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_arm7) ```bash -curl -L https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_amd64 > /usr/local/bin/dcsg +curl -L https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_amd64 > /usr/local/bin/dcsg chmod +x /usr/local/bin/dcsg ``` diff --git a/main.go b/main.go index 5a15644..d819e05 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( ) const applicationName = "dcsg" -const applicationVersion = "v0.1.0-alpha" +const applicationVersion = "v0.1.1-alpha" var ( app = kingpin.New(applicationName, fmt.Sprintf("%s creates systemd services for Docker Compose projects (%s)", applicationName, applicationVersion))