-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from mlhamel/feature/introduce-docker-compose-s…
…upport Introduce docker-compose support and deprecat railgun.
- Loading branch information
Showing
11 changed files
with
140 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM golang:1.17.6-alpine3.15 AS base | ||
|
||
WORKDIR /go/src/trieugene | ||
COPY . . | ||
RUN go get -d -v ./... | ||
RUN go install -v ./... | ||
|
||
CMD ["trieugene", "dev"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
services: | ||
faktory: | ||
container_name: faktory | ||
image: contribsys/faktory | ||
ports: | ||
- "7419:7419" | ||
- "7420:7420" | ||
trieugene: | ||
container_name: trieugene | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
environment: | ||
TRIEUGENE_FAKTORY_URL: "tcp://faktory:7419" | ||
FAKTORY_URL: "tcp://faktory:7419" | ||
FAKTORY_PROVIDER: "tcp://faktory:7419" | ||
links: | ||
- faktory | ||
rougecombien: | ||
container_name: rougecombien | ||
build: | ||
context: . | ||
dockerfile: services/rougecombien/Dockerfile | ||
environment: | ||
TRIEUGENE_FAKTORY_URL: "tcp://faktory:7419" | ||
FAKTORY_URL: "tcp://faktory:7419" | ||
FAKTORY_PROVIDER: "tcp://faktory:7419" | ||
links: | ||
- faktory | ||
rotondo: | ||
container_name: rotondo | ||
build: | ||
context: . | ||
dockerfile: services/rotondo/Dockerfile | ||
environment: | ||
TRIEUGENE_FAKTORY_URL: "tcp://faktory:7419" | ||
FAKTORY_URL: "tcp://faktory:7419" | ||
FAKTORY_PROVIDER: "tcp://faktory:7419" | ||
links: | ||
- faktory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,47 @@ | ||
module github.com/mlhamel/trieugene | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go/iam v0.3.0 // indirect | ||
cloud.google.com/go/storage v1.21.0 | ||
github.com/aws/aws-sdk-go v1.43.14 | ||
github.com/benbjohnson/ego v0.4.0 // indirect | ||
github.com/contribsys/faktory v1.6.0 | ||
github.com/contribsys/faktory_worker_go v1.6.0 | ||
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect | ||
github.com/go-bindata/go-bindata v3.1.2+incompatible // indirect | ||
github.com/go-co-op/gocron v1.13.0 | ||
github.com/gocarina/gocsv v0.0.0-20220304222734-caabc5f00d30 | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/jstemmer/go-junit-report v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.4.3 | ||
github.com/pior/runnable v0.8.0 | ||
github.com/rs/zerolog v1.26.1 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/urfave/cli v1.22.5 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.100.2 // indirect | ||
cloud.google.com/go/compute v1.5.0 // indirect | ||
cloud.google.com/go/iam v0.3.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.7 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/robfig/cron/v3 v3.0.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect | ||
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.0.0-20220307203707-22a9840ba4d7 // indirect | ||
golang.org/x/tools v0.1.9 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/api v0.71.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220308174144-ae0e22291548 // indirect | ||
google.golang.org/grpc v1.44.0 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM golang:1.17.6-alpine3.15 AS base | ||
|
||
WORKDIR /go/src/rotondo | ||
COPY . . | ||
ADD go.mod . | ||
RUN go get -d -v ./... | ||
RUN go install -v ./... | ||
|
||
CMD ["rotondo", "dev"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM golang:1.17.6-alpine3.15 AS base | ||
|
||
WORKDIR /go/src/rougecombien | ||
COPY . . | ||
ADD go.mod . | ||
RUN go get -d -v ./... | ||
RUN go install -v ./... | ||
|
||
CMD ["rougecombien", "dev"] |