danpoar commited on
Commit
2327ddb
·
verified ·
1 Parent(s): f27e74b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -1,5 +1,12 @@
 
1
  FROM argilla/argilla:latest
2
- EXPOSE 6900
 
3
  ENV ARGILLA_LOCAL_AUTH_ENABLED=true
4
  ENV ARGILLA_LOCAL_AUTH_PASSWORD=1234
 
 
 
 
 
5
  CMD ["argilla", "run", "--host", "0.0.0.0", "--port", "6900"]
 
1
+ # Use Argilla's official image
2
  FROM argilla/argilla:latest
3
+
4
+ # Environment variables for Argilla:
5
  ENV ARGILLA_LOCAL_AUTH_ENABLED=true
6
  ENV ARGILLA_LOCAL_AUTH_PASSWORD=1234
7
+ ENV ARGILLA_SERVER_HOST=0.0.0.0
8
+ ENV ARGILLA_SERVER_PORT=6900
9
+
10
+ EXPOSE 6900
11
+
12
  CMD ["argilla", "run", "--host", "0.0.0.0", "--port", "6900"]