DLesmes commited on
Commit
d8884b4
·
verified ·
1 Parent(s): 6fd3de8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -1,4 +1,9 @@
1
  # Use the official Label Studio image as the base
2
  FROM heartexlabs/label-studio:latest
3
 
4
- CMD ["label-studio", "start", "--no-browser", "--host", "0.0.0.0"]
 
 
 
 
 
 
1
  # Use the official Label Studio image as the base
2
  FROM heartexlabs/label-studio:latest
3
 
4
+ # Override the default command to provide a full, explicit configuration
5
+ # that solves all previous issues.
6
+ CMD ["label-studio", "start", "my_project", \
7
+ "--no-browser", \
8
+ "--host", "0.0.0.0", \
9
+ "--data-dir", "/data/project-data"]