forked from speakeasy-api/sdk-generation-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
26 lines (25 loc) · 738 Bytes
/
docker-compose.yaml
File metadata and controls
26 lines (25 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: "3.9"
services:
main:
build:
context: .
dockerfile: Dockerfile.dev
volumes:
- .:/app # Live code reloading
stdin_open: true
tty: true
container_name: main_container
environment:
- INPUT_DEBUG=true
- INPUT_GITHUB_ACCESS_TOKEN=${GITHUB_TOKEN}
- GITHUB_SERVER_URL=https://github.com
- GITHUB_REPOSITORY=speakeasy-api/sdk-generation-action-test-repo
- GITHUB_REPOSITORY_OWNER=speakeasy-api
- GITHUB_REF=refs/heads/main
- GITHUB_OUTPUT=./output.txt
- GITHUB_WORKFLOW=test
- GITHUB_WORKSPACE=${PWD}
- GITHUB_RUN_ID=1
- GITHUB_RUN_ATTEMPT=1
- SPEAKEASY_ENVIRONMENT=local
- SPEAKEASY_API_KEY=${SPEAKEASY_API_KEY}