Skip to content

Commit

Permalink
add back docker-compose (#3991)
Browse files Browse the repository at this point in the history
  • Loading branch information
gyfchong authored Aug 17, 2023
1 parent 3a5cd8c commit 4577248
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
version: "3.4"

x-defaults: &defaults
volumes:
- .:/workspace
working_dir: /workspace
command: /bin/sh -c "while sleep 1000; do :; done"
environment:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_SESSION_TOKEN
- AWS_DEFAULT_REGION
- KAIZEN_DOMAIN_NAME
- KAIZEN_DISTRIBUTION_ID
- KAIZEN_BASE_PATH
- GITHUB_STATUS_TOKEN
- BUILDKITE_BRANCH
- GITHUB_REGISTRY_TOKEN

services:
build:
<<: *defaults
build:
context: .
dockerfile: .buildkite/dockerfiles/build.Dockerfile

publish:
<<: *defaults
build:
context: .
dockerfile: .buildkite/dockerfiles/publish.Dockerfile
changeset:
<<: *defaults
build:
context: .
dockerfile: .buildkite/dockerfiles/release.Dockerfile

release:
<<: *defaults
build:
context: .
dockerfile: .buildkite/dockerfiles/release.Dockerfile

0 comments on commit 4577248

Please sign in to comment.