Skip to content

Commit 48cbe6a

Browse files
fix: pre-compiled Windows binary could not run because of missing compose file
1 parent 6905a02 commit 48cbe6a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docker-compose.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@ services:
134134
ruby:
135135
image: "ruby:${RUBY_VERSION}"
136136
entrypoint: [ "ruby" ]
137+
rustc:
138+
image: "rust:${RUST_VERSION}"
139+
entrypoint: [ "rustc" ]
137140
s3cmd:
138141
build:
139142
context: apps/s3cmd
@@ -146,6 +149,11 @@ services:
146149
AWS_SECRET_ACCESS_KEY: "${AWS_SECRET_ACCESS_KEY:-}"
147150
volumes:
148151
- "${HOME:-}/.dockerized/apps/s3cmd:/root"
152+
semantic-release-cli:
153+
<<: *node
154+
entrypoint: [ "npx", "--package=semantic-release-cli@${SEMANTIC_RELEASE_VERSION}", "semantic-release-cli" ]
155+
volumes:
156+
- "${HOME:-}/.dockerized/apps/gh:/root"
149157
swagger-codegen:
150158
image: "swaggerapi/swagger-codegen-cli-v3:${SWAGGER_CODEGEN_VERSION}"
151159
tree:

0 commit comments

Comments
 (0)