Update README with Docker setup
Browse files
README.md
CHANGED
@@ -108,6 +108,12 @@ To save the generated datasets to a local directory instead of pushing them to t
|
|
108 |
|
109 |
- `SAVE_LOCAL_DIR`: The local directory to save the generated datasets to.
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
### Argilla integration
|
112 |
|
113 |
Argilla is an open source tool for data curation. It allows you to annotate and review datasets, and push curated datasets to the Hugging Face Hub. You can easily get started with Argilla by following the [quickstart guide](https://docs.argilla.io/latest/getting_started/quickstart/).
|
@@ -138,3 +144,23 @@ Run the app:
|
|
138 |
```bash
|
139 |
python app.py
|
140 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
|
109 |
- `SAVE_LOCAL_DIR`: The local directory to save the generated datasets to.
|
110 |
|
111 |
+
You can use our environment template as a starting point:
|
112 |
+
|
113 |
+
```bash
|
114 |
+
cp .env.local.template .env
|
115 |
+
```
|
116 |
+
|
117 |
### Argilla integration
|
118 |
|
119 |
Argilla is an open source tool for data curation. It allows you to annotate and review datasets, and push curated datasets to the Hugging Face Hub. You can easily get started with Argilla by following the [quickstart guide](https://docs.argilla.io/latest/getting_started/quickstart/).
|
|
|
144 |
```bash
|
145 |
python app.py
|
146 |
```
|
147 |
+
|
148 |
+
## 🐳 Docker Setup
|
149 |
+
|
150 |
+
Quick setup with all services (App + Ollama + Argilla):
|
151 |
+
|
152 |
+
```bash
|
153 |
+
# Copy environment template
|
154 |
+
cp docker/.env.docker.template .env # Add your HF_TOKEN in .env
|
155 |
+
|
156 |
+
# Build all services (this may take a few minutes)
|
157 |
+
docker compose -f docker-compose.yml -f docker/ollama/compose.yml -f docker/argilla/compose.yml build
|
158 |
+
|
159 |
+
# Start all services
|
160 |
+
docker compose -f docker-compose.yml -f docker/ollama/compose.yml -f docker/argilla/compose.yml up -d
|
161 |
+
```
|
162 |
+
|
163 |
+
Once running, access the Synthetic Data Generator at [localhost:7860](http://localhost:7860)
|
164 |
+
|
165 |
+
|
166 |
+
> For more detailed Docker configurations and setups, check [docker/README.md](docker/README.md)
|