Spaces:
No application file
No application file
Commit ·
56fb040
1
Parent(s): ef11843
Upload Dockerfile.txt
Browse files- Dockerfile.txt +20 -0
Dockerfile.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM argilla/argilla-quickstart:v1.15.0
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
# Define datasets to preload: full=all datasets, single=one dataset, and none=no datasets.
|
| 5 |
+
ENV LOAD_DATASETS=single
|
| 6 |
+
|
| 7 |
+
# Uncomment the next section to keep backward compatibility with previous versions
|
| 8 |
+
## Following variables are used for backward compatibility with the previous security setup for the quickstart image
|
| 9 |
+
#ENV ADMIN_USERNAME="team"
|
| 10 |
+
#ENV ADMIN_API_KEY="team.apikey"
|
| 11 |
+
## The password has a minimum length of 8. Passwords with lower lengths will fail.
|
| 12 |
+
#ENV ADMIN_PASSWORD=12345678
|
| 13 |
+
#
|
| 14 |
+
#ENV ANNOTATOR_USERNAME="argilla"
|
| 15 |
+
## The password has a minimum length of 8. Passwords with lower lengths will fail.
|
| 16 |
+
#ENV ANNOTATOR_PASSWORD=12345678
|
| 17 |
+
#
|
| 18 |
+
#ENV ARGILLA_WORKSPACE="team"
|
| 19 |
+
|
| 20 |
+
CMD /start_quickstart_argilla.sh
|