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

(improvement)(chat) Specify platform in docker-compose.yml. #1413

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Changes from all 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 docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
services:
chroma:
image: chromadb/chroma:0.5.3
platform: linux/amd64
container_name: supersonic_chroma
ports:
- "8000:8000"
Expand All @@ -20,6 +21,7 @@ services:

mysql:
image: mysql:8.0
platform: linux/amd64
container_name: supersonic_mysql
environment:
LANG: 'C.UTF-8' # 设置环境变量
Expand Down Expand Up @@ -48,6 +50,7 @@ services:

db_init:
image: supersonicbi/supersonic:${SUPERSONIC_VERSION:-latest}
platform: linux/amd64
container_name: supersonic_db_init
depends_on:
mysql:
Expand All @@ -71,6 +74,7 @@ services:

supersonic_standalone:
image: supersonicbi/supersonic:${SUPERSONIC_VERSION:-latest}
platform: linux/amd64
container_name: supersonic_standalone
environment:
DB_HOST: supersonic_mysql
Expand Down
Loading