-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- remove cmake - rename pinpintPy - add testcase for plugins - support macos - add gz for build faster close #538
- Loading branch information
Showing
95 changed files
with
1,447 additions
and
1,365 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
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,49 @@ | ||
version: '3.9' | ||
|
||
services: | ||
dev-mysql: | ||
image: mysql:5.7 | ||
restart: always | ||
container_name: dev-mysql | ||
hostname: dev-mysql | ||
environment: | ||
MYSQL_ROOT_PASSWORD: 'password' | ||
ports: | ||
- '3306:3306' | ||
expose: | ||
- '3306' | ||
volumes: | ||
- ..:/workspace:cached | ||
redis: | ||
image: redis:alpine | ||
command: redis-server --port 6379 | ||
container_name: redis_boot | ||
hostname: redis_boot | ||
labels: | ||
- "name=redis" | ||
- "mode=standalone" | ||
ports: | ||
- 6379:6379 | ||
|
||
pinpoint: | ||
container_name: pinpoint | ||
command: sleep infinity | ||
hostname: pinpoint | ||
build: | ||
context: ./ | ||
dockerfile: Dockerfile | ||
# args: | ||
volumes: | ||
- ..:/workspace:cached | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
# - ${env:HOME}:/workspace | ||
security_opt: | ||
- seccomp=unconfined | ||
cap_add: | ||
- SYS_PTRACE | ||
- NET_RAW | ||
- NET_ADMIN | ||
user: pinpoint | ||
|
||
|
||
|
Git LFS file not shown
Git LFS file not shown
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,3 @@ | ||
.devcontainer/*.gz filter=lfs diff=lfs merge=lfs -text | ||
.devcontainer/go1.18.10.linux-amd64.tar.gz filter=lfs diff=lfs merge=lfs -text | ||
.devcontainer/php-7.4.33.tar.gz filter=lfs diff=lfs merge=lfs -text |
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
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
Oops, something went wrong.