Skip to content

Commit

Permalink
Merge branch 'master' into interest
Browse files Browse the repository at this point in the history
  • Loading branch information
willscott committed Jul 20, 2019
2 parents 4b0c979 + 46a4c40 commit 73a2546
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pird/pird
# Config files
*.conf
*.handle
.env

# Coverage
overalls.coverprofile
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ go 1.12

require (
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412
github.com/barnex/cuda5 v0.0.0-20170131213030-57cec7ab46da
github.com/coreos/etcd v0.0.0-20170414193847-e2d0db95ebbc
github.com/coreos/go-systemd v0.0.0-20170324095819-1f9909e51b2d // indirect
github.com/coreos/pkg v0.0.0-20170405072653-099530d80109 // indirect
Expand Down
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 h1:w1UutsfOrms1J05zt7ISrnJIXKzwaspym5BTKGx93EI=
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412/go.mod h1:WPjqKcmVOxf0XSf3YxCJs6N6AOSrOx3obionmG7T0y0=
github.com/barnex/cuda5 v0.0.0-20170131213030-57cec7ab46da/go.mod h1:GnBnFz4V/+kxwKFnquvOOi+IjZoVJsIUbcAVOXLCxCo=
github.com/coreos/etcd v0.0.0-20170414193847-e2d0db95ebbc h1:VR+2Zdu4LwGrVDMUdVphibZfMHoFEnb5t8xQDWi1IAk=
github.com/coreos/etcd v0.0.0-20170414193847-e2d0db95ebbc/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
github.com/coreos/go-systemd v0.0.0-20170324095819-1f9909e51b2d h1:JmJsvY9kF4oqiNrI+3FEoTtpRu8HvlxPgCSIrxxoZTQ=
Expand Down
9 changes: 9 additions & 0 deletions start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

echo "===== RUNNING =====" && \
docker run --rm -it \
--name golang-dev \
--env-file=.env \
-v "$PWD":/code \
golang \
bash

0 comments on commit 73a2546

Please sign in to comment.