Skip to content

Commit d0977d7

Browse files
authored
Merge pull request #2 from OpenCSGs/main
Update README.md
2 parents 0dd63ed + 923aaa8 commit d0977d7

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ This project inherits the [Apache License 2.0](LICENSE) from Data Juicer.
3131
## Building data-flow from Source
3232

3333
```
34-
docker build -t data_flow . -f Dockerfile
34+
docker build -t dataflow . -f Dockerfile
3535
```
3636

3737
## Building data-flow-celery from Source
3838

3939
```
40-
docker build -t data_flow_celery . -f Dockerfile-celery
40+
docker build -t dataflow-celery . -f Dockerfile-celery
4141
```
4242

4343
## Prerequisites
@@ -51,7 +51,7 @@ docker run -d --name dataflow-pg \
5151
-e POSTGRES_DB=data_flow \
5252
-e POSTGRES_USER=postgres \
5353
-e POSTGRES_PASSWORD=postgres \
54-
opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/csghub/postgres:15.10
54+
opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/csghub/postgres:15.10
5555
```
5656

5757
Launch mongoDB container
@@ -97,7 +97,7 @@ docker run -d --name dataflow-api -p 8000:8000 \
9797
-e STUDIO_JUMP_URL=https://data-label.opencsg.com \
9898
-e REDIS_HOST_URL=redis://127.0.0.1:6379 \
9999
-e MONG_HOST_URL=mongodb://root:example@127.0.0.1:27017 \
100-
data_flow
100+
dataflow
101101

102102
```
103103

@@ -123,7 +123,7 @@ docker run -d --name celery-work -p 8001:8001 \
123123
-e DATABASE_PORT=5433 \
124124
-e REDIS_HOST_URL=redis://127.0.0.1:6379 \
125125
-e MONG_HOST_URL=mongodb://root:example@127.0.0.1:27017 \
126-
data_flow_celery
126+
dataflow-celery
127127

128128
```
129129

docker-compose-stg.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22

33
dataflow_postgres_db:
44
restart: unless-stopped
5-
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsg_public/csghub/postgres:15.10
5+
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/postgres:15.10
66
volumes:
77
- /root/dataflow/dataflow-v2/postgres_db_data:/var/lib/postgresql/data
88
command: -p 5432
@@ -40,7 +40,7 @@ services:
4040

4141
dataflow_celery_worker:
4242
restart: unless-stopped
43-
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/dataflow-celery:20250814
43+
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/dataflow-celery:20250816
4444
command: >
4545
sh -c "
4646
MILLISECOND_TIMESTAMP=$$(date +%s%3N);
@@ -77,7 +77,7 @@ services:
7777

7878
dataflow_api_server:
7979
restart: unless-stopped
80-
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/dataflow:20250814
80+
image: opencsg-registry.cn-beijing.cr.aliyuncs.com/opencsghq/dataflow:20250816
8181
volumes:
8282
- /root/dataflow/dataflow-v2/apidata:/data/dataflow_data
8383
environment:

0 commit comments

Comments
 (0)