Skip to content

Commit 52316ca

Browse files
committed
Update
1 parent 3e91802 commit 52316ca

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ build
66
*.zip
77
config.json
88
config.yaml
9+
crowsnest-*-*
910

1011
### Go ###
1112
# Binaries for programs and plugins

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ Personally I use this to keep my website up to date as the files are published t
6666

6767
If you find a bug or would like to request a new feature please open an [Issue](https://github.com/psidex/CrowsNest/issues/new).
6868

69+
## Docker
70+
71+
If you want to try it out in Docker there are images available on [Docker Hub](https://hub.docker.com/repository/docker/psidex/crowsnest).
72+
6973
## Development
7074

7175
Requires [govvv](https://github.com/ahmetb/govvv) to build correctly.

build.ps1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
govvv build -pkg github.com/psidex/CrowsNest/cmd -o crowsnest.exe .\main.go
1+
govvv build -pkg github.com/psidex/CrowsNest/cmd -o crowsnest-windows-amd64.exe .\main.go
2+
3+
$Env:GOOS = "linux"; $Env:GOARCH = "amd64"; $Env:CGO_ENABLED = 0;
4+
5+
govvv build -pkg github.com/psidex/CrowsNest/cmd -o ./crowsnest-linux-amd64 ./main.go

0 commit comments

Comments
 (0)