--security-opt seccomp=unconfined
to docker run
, otherwise, you will get pthread_create failed
error.
registry.cn-shanghai.aliyuncs.com/bytebase/bytebase:latest
.
bind: address already in use
error, it means the port 8080 is already in use on your host. You need to either stop the existing process using the port or configure Bytebase to use a different port via --publish <<YOUR_PORT>>:8080
.
--network host
flags in docker run
command. This allows Bytebase to connect to database instance running on the same host with localhost
.host.docker.internal
to connect to database instance running on the same host.linux/amd64
and linux/arm64
arch. If it doesn’t match your OS arch, you may supply
--platform linux/amd64
as a best effort.--mount
option when starting colima as shown below: