-
Notifications
You must be signed in to change notification settings - Fork 21
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
chore: Docker compose init #116
base: main
Are you sure you want to change the base?
Conversation
services: | ||
db: | ||
container_name: wandb_db | ||
image: mysql:8.0 |
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.
Are we fully on 8.0? I know EOL is coming up, but can't remember where we are on this
redis: | ||
condition: service_healthy | ||
minio: | ||
condition: service_healthy |
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.
where is service_healthy
defined?
- 8080:8080 | ||
environment: | ||
MYSQL: mysql://wandb:wandb@db:3306/wandb | ||
BUCKET_QUEUE: internal:// |
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.
I think we want this to point to the redis instance
/bin/sh -c " | ||
/usr/bin/mc alias set myminio http://minio:9000 wandb wandbadmin; | ||
/usr/bin/mc mb myminio/data; | ||
/usr/bin/mc policy set public myminio/data; |
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.
Do we need to set the CORS policy here?
# W&B Server Docker Compose README | ||
|
||
This repository contains a Docker Compose configuration for setting up a W&B (Weights & Biases) server. This configuration includes various services necessary for the operation of the W&B server, including a database, cache, storage, and a system for updating the W&B server container. | ||
|
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.
README is nice!
No description provided.