-
Notifications
You must be signed in to change notification settings - Fork 48
Add seekdb docker #189
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
base: main
Are you sure you want to change the base?
Add seekdb docker #189
Conversation
-Replace the hard coded password with the 'SEEKDB_ROOT PASSWORD' environment variable -Update health check commands to support optional passwords -Modify the document to explain the password management method
-Add powermem network configuration for service -Add powermem server and seeddb services to the network
docker/README.md
Outdated
| # Enter the password when prompted | ||
| ``` | ||
|
|
||
| ### Web Dashboard |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这算是seekdb的web dashboard,标注一下吧
| image: oceanbase/powermem-server:latest | ||
| container_name: powermem-server | ||
| ports: | ||
| - "${POWERMEM_SERVER_PORT:-8000}:8000" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
为何要把这部分内容改掉呢,- "${POWERMEM_SERVER_PORT:-8000}:8000" 这中是从env中拿值的,没有才用默认值
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
去掉了从env文件取值,走的单文件。去掉的原因是冗余过多,默认值下面还是有保留,减少依赖文件数量
docker/README.md
Outdated
| ``` | ||
|
|
||
| ### Run with Docker Compose | ||
| ### Run with Docker Compose (with SeekDB) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seekdb 全小写
-Update database names in docker-compose.yml and README.md -Add. env file support to Docker Compose configuration
Add seekdb docker