Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Hound search main #16

Merged
merged 39 commits into from
Jul 28, 2021
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
3ea76c2
Update config-example.json
joprice Nov 18, 2018
3af56b5
Add CONTRIBUTING.md file
Feb 28, 2020
6d209ff
Dockerfile should use github.com/hound-search
atoomic Dec 7, 2019
4754d5a
make listen URL clickable in iTerm (#340)
igorwwwwwwwwwwwwwwwwwwww Apr 15, 2020
ac0241d
Add Jest tests and Prettier support (#343)
salemhilal Apr 15, 2020
fcb4ffd
Git VCS driver: Support non-default target refs (#345)
rwliang Aug 25, 2020
e14bb29
Exclude file path (#347)
vrischmann Sep 27, 2020
e3ba713
Update README with contact info for maintainers. (#348)
salemhilal Sep 27, 2020
747eefd
incorporate detailing around gopath in README's quick start instructi…
blobbered Oct 16, 2020
268f287
pin alpine version to make the docker pass
Oct 18, 2020
b551906
Update Dockerfile
rfan-debug Oct 21, 2020
57d568c
More detailed setup documents with less assumptions on users (#359)
rfan-debug Oct 22, 2020
cf9b308
Initialize Go Modules
Feb 26, 2020
8efbe57
Replace jteeuwen/go-bindata with go-bindata/go-bindata
Feb 27, 2020
e876521
update Go version requirement in README file
blobbered Oct 24, 2020
06e14d9
Add a -version flag to Houndd (#362)
kartikay101 Oct 30, 2020
d8695de
Add padding between advanced mode text inputs
blobbered Oct 30, 2020
f83e108
Setup Github Actions CI (#354)
blobbered Nov 11, 2020
a8ca3e8
Add a github actions badge
salemhilal Nov 11, 2020
1702bcf
Update README.md (#369)
aroach Dec 3, 2020
5b702c4
Added new folder docs with config-options description on options. (#370)
Jan 24, 2021
2850189
Test windows
blobbered Jan 25, 2021
b88fc1f
Install dependencies in Dockerfile
yayachiken Jan 22, 2021
ac17eac
Fix typo
SuperSandro2000 Feb 10, 2021
ec82525
Adding a tip for windows users (#379)
StingyJack Feb 15, 2021
707ab91
Use tini as default entry point (#376)
yayachiken Feb 16, 2021
2ebb422
Add a warning for the default branch rename (#380)
salemhilal Feb 17, 2021
41d085a
Update README to reflect branch rename. (#384)
salemhilal Feb 24, 2021
6249481
Update version in main.go
dschott68 Feb 25, 2021
43df2e1
support github webhook
Mar 8, 2021
b1bc753
Merge pull request #387 from corbosman/main
jacobrose Mar 17, 2021
60b8104
Omit ports in constructed URL (#383)
alexanderchiu Apr 12, 2021
9762530
Improve accessibility (#398)
jrarmstro May 13, 2021
546aacc
Automatically build docker image and publish to ghcr.io (#401)
inful Jun 30, 2021
70e1229
Update default-config.json (#391)
simon04 Jun 30, 2021
c9a7667
Add hyperlinks to repository root (#396)
jrarmstro Jul 2, 2021
ca5c7c8
Add literal search option (#397)
jrarmstro Jul 6, 2021
b8a39b2
Give repo links a target of blank (#404)
hoorayimhelping Jul 28, 2021
4e62a5a
Merge branch 'main' of https://github.com/hound-search/hound into hou…
AlexFielder Jul 28, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pin alpine version to make the docker pass
  • Loading branch information
Ruixi Fan authored and salemhilal committed Oct 22, 2020
commit 268f2870ce0f8476435ea876505d0d203eab24ea
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
FROM alpine
FROM alpine:3.10

ENV GOPATH /go

COPY . /go/src/github.com/hound-search/hound

COPY default-config.json /data/config.json

RUN apk update \
&& apk add go git subversion libc-dev mercurial bzr openssh \
&& go install github.com/hound-search/hound/cmds/houndd \