Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

一部TypedArrayがサポートされてないため、dashboardでのmsgpack通信を無効化 #25

Merged
merged 3 commits into from
Feb 17, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions server/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ services:
retries: 10
builder:
container_name: wsnet2-builder
platform: linux/amd64
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

platform指定は別PRに分けてもらっていいですか?
Dockerfileも合わせて直さないとなので。

build: .
image: wsnet2-arelo
volumes:
Expand All @@ -41,6 +42,7 @@ services:
command: bash -c 'make install-deps; arelo -p "**/*.{go,proto}" -i "**/.*" -i "**/*{_test,_string,.pb}.go" -i "cmd/wsnet2-{bot,tool}" -- make build'
game:
container_name: wsnet2-game
platform: linux/amd64
depends_on:
- db
build: .
Expand All @@ -62,6 +64,7 @@ services:
- 3000:3000
hub:
container_name: wsnet2-hub
platform: linux/amd64
depends_on:
- db
- game
Expand All @@ -84,6 +87,7 @@ services:
- 3010:3000
lobby:
container_name: wsnet2-lobby
platform: linux/amd64
depends_on:
- db
build: .
Expand Down
Loading