chore: remove platform field from docker-compose.yaml

This commit is contained in:
Junyan Qin
2025-12-21 20:31:00 +08:00
parent e3595b5c57
commit 88ef9cd6ae

View File

@@ -7,7 +7,6 @@ services:
langbot_plugin_runtime: langbot_plugin_runtime:
image: rockchin/langbot:latest image: rockchin/langbot:latest
container_name: langbot_plugin_runtime container_name: langbot_plugin_runtime
platform: linux/amd64 # For Apple Silicon compatibility
volumes: volumes:
- ./data/plugins:/app/data/plugins - ./data/plugins:/app/data/plugins
ports: ports:
@@ -22,7 +21,6 @@ services:
langbot: langbot:
image: rockchin/langbot:latest image: rockchin/langbot:latest
container_name: langbot container_name: langbot
platform: linux/amd64 # For Apple Silicon compatibility
volumes: volumes:
- ./data:/app/data - ./data:/app/data
restart: on-failure restart: on-failure