You've already forked DataMate
bugfix (#164)
This commit is contained in:
23
README.md
23
README.md
@@ -45,8 +45,6 @@ Choose a deployment method:
|
||||
Enter choice:
|
||||
```
|
||||
|
||||
When running make uninstall, the installer will prompt once whether to delete volumes; that single choice is applied to all components. The uninstall order is: milvus -> label-studio -> datamate, which ensures the datamate network is removed cleanly after services that use it have stopped.
|
||||
|
||||
### Clone the Code
|
||||
|
||||
```bash
|
||||
@@ -59,6 +57,20 @@ cd DataMate
|
||||
```bash
|
||||
make install
|
||||
```
|
||||
|
||||
If the machine you are using does not have make installed, please run the following command to deploy it:
|
||||
```bash
|
||||
# Windows
|
||||
set REGISTRY=ghcr.io/modelengine-group/
|
||||
docker compose -f ./deployment/docker/datamate/docker-compose.yml up -d
|
||||
docker compose -f ./deployment/docker/milvus/docker-compose.yml up -d
|
||||
|
||||
# Linux/Mac
|
||||
export REGISTRY=ghcr.io/modelengine-group/
|
||||
docker compose -f ./deployment/docker/datamate/docker-compose.yml up -d
|
||||
docker compose -f ./deployment/docker/milvus/docker-compose.yml up -d
|
||||
```
|
||||
|
||||
Once the container is running, access http://localhost:30000 in a browser to view the front-end interface.
|
||||
|
||||
To list all available Make targets, flags and help text, run:
|
||||
@@ -85,6 +97,13 @@ make build
|
||||
make install dev=true
|
||||
```
|
||||
|
||||
### Uninstall
|
||||
```bash
|
||||
make uninstall
|
||||
```
|
||||
|
||||
When running make uninstall, the installer will prompt once whether to delete volumes; that single choice is applied to all components. The uninstall order is: milvus -> label-studio -> datamate, which ensures the datamate network is removed cleanly after services that use it have stopped.
|
||||
|
||||
## 🤝 Contribution Guidelines
|
||||
|
||||
Thank you for your interest in this project! We warmly welcome contributions from the community. Whether it's submitting
|
||||
|
||||
Reference in New Issue
Block a user