Skip to content

Commit d1aaac2

Browse files
committed
Merge branch 'release/v0.1.1-alpha'
2 parents 2cb8b30 + 6628f00 commit d1aaac2

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [v0.1.1-alpha] - 2016-12-18
8+
9+
Set the working directory for the systemd services
10+
11+
### Changed
12+
- 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)
13+
714
## [v0.1.0-alpha] - 2016-12-18
815

916
The prototype

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ For the `uninstall` action **dcsg** remove the systemd service it created earlie
6161

6262
You can download pre-built binaries for Linux (64bit, ARM 5, ARM 6 and ARM 7) from [github.com » andreaskoch » dcsg » releases](/releases/latest):
6363

64-
- [Download for dcsg (Linux 64bit)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_amd64)
65-
- [Download for dcsg (Linux ARM5)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_arm5)
66-
- [Download for dcsg (Linux ARM6)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_arm6)
67-
- [Download for dcsg (Linux ARM7)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_arm7)
64+
- [Download for dcsg (Linux 64bit)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_amd64)
65+
- [Download for dcsg (Linux ARM5)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_arm5)
66+
- [Download for dcsg (Linux ARM6)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_arm6)
67+
- [Download for dcsg (Linux ARM7)](https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_arm7)
6868

6969
```bash
70-
curl -L https://github.com/andreaskoch/dcsg/releases/download/v0.1.0-alpha/dcsg_linux_amd64 > /usr/local/bin/dcsg
70+
curl -L https://github.com/andreaskoch/dcsg/releases/download/v0.1.1-alpha/dcsg_linux_amd64 > /usr/local/bin/dcsg
7171
chmod +x /usr/local/bin/dcsg
7272
```
7373

installer.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@ Description={{ .ProjectName }} Service
7777
After=network.target
7878
7979
[Service]
80-
ExecStart=/usr/bin/env docker-compose -p "{{ .ProjectName }}" -f "{{ .ProjectDirectory }}/{{ .DockerComposeFile }}" up
81-
ExecStop=/usr/bin/env docker-compose -p "{{ .ProjectName }}" -f "{{ .ProjectDirectory }}/{{ .DockerComposeFile }}" down
80+
WorkingDirectory={{ .ProjectDirectory }}
81+
ExecStart=/usr/bin/env docker-compose -p "{{ .ProjectName }}" -f "{{ .DockerComposeFile }}" up
82+
ExecStop=/usr/bin/env docker-compose -p "{{ .ProjectName }}" -f "{{ .DockerComposeFile }}" down
8283
8384
[Install]
8485
WantedBy=network-online.target

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
const applicationName = "dcsg"
11-
const applicationVersion = "v0.1.0-alpha"
11+
const applicationVersion = "v0.1.1-alpha"
1212

1313
var (
1414
app = kingpin.New(applicationName, fmt.Sprintf("%s creates systemd services for Docker Compose projects (%s)", applicationName, applicationVersion))

0 commit comments

Comments
 (0)