forked from adams549659584/go-proxy-bingai
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix] 🐛 CodeSandbox Use Build Cache when Setup
- Loading branch information
1 parent
3da7111
commit 2504ee0
Showing
3 changed files
with
21 additions
and
8 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
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,6 +1,6 @@ | ||
{ | ||
"name": "Go Proxy BingAI", | ||
"build": { | ||
"dockerfile": "./Dockerfile" | ||
} | ||
"dockerComposeFile": "docker-compose.yml", | ||
"service": "go-proxy-bingai", | ||
"workspaceFolder": "/app" | ||
} |
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,13 @@ | ||
services: | ||
go-proxy-bingai: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
no_cache: true | ||
environment: | ||
- HEADLESS=false | ||
- PASS_TIMEOUT=5 | ||
ports: | ||
- 8080:8080 | ||
- 45678:45678 | ||
- 9005:9005 |