We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5851ba2 commit 6a54469Copy full SHA for 6a54469
README.md
@@ -30,11 +30,13 @@ dockerized <command>
30
- Languages & SDKs
31
- [dotnet](apps/dotnet/README.md)
32
- go
33
+ - gofmt
34
- (haskell)
35
- ghci
36
- java
37
- perl
38
- php
39
+ - composer
40
- lua
41
- node
42
- [npm](apps/npm/README.md)
docker-compose.yml
@@ -99,14 +99,17 @@ services:
99
ghci:
100
image: "haskell:${GHCI_VERSION}"
101
entrypoint: [ "ghci" ]
102
- go:
+ go: &go
103
image: "golang:${GO_VERSION}"
104
entrypoint: [ "go" ]
105
volumes:
106
- "go_cache:/go/pkg"
107
environment:
108
GOOS: "${GOOS:-}"
109
GOARCH: "${GOARCH:-}"
110
+ gofmt:
111
+ <<: *go
112
+ entrypoint: [ "gofmt" ]
113
helm:
114
image: "alpine/helm:${HELM_VERSION}"
115
http:
0 commit comments