Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
ab0a1ae
1
Parent(s):
894534a
Prepare changes for version 1.6.0
Browse files- Dockerfile +20 -2
Dockerfile
CHANGED
|
@@ -1,6 +1,24 @@
|
|
| 1 |
-
FROM argilla/argilla-quickstart:v1.
|
| 2 |
|
| 3 |
# Define datasets to preload: full=all datasets, single=one dataset, and none=no datasets.
|
| 4 |
ENV LOAD_DATASETS=single
|
| 5 |
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM argilla/argilla-quickstart:v1.6.0
|
| 2 |
|
| 3 |
# Define datasets to preload: full=all datasets, single=one dataset, and none=no datasets.
|
| 4 |
ENV LOAD_DATASETS=single
|
| 5 |
|
| 6 |
+
# Define datasets to preload: full=all datasets, single=one dataset, and none=no datasets.
|
| 7 |
+
ENV LOAD_DATASETS=single
|
| 8 |
+
|
| 9 |
+
# Uncomment the next section to keep backward compatibility with previous versions
|
| 10 |
+
## Following variables are used for backward compatibility with the previous security setup for the quickstart image
|
| 11 |
+
#ENV ADMIN_USERNAME="team"
|
| 12 |
+
#ENV ADMIN_API_KEY="team.apikey"
|
| 13 |
+
## The password has a minimum length of 8. Passwords with lower lengths will fail.
|
| 14 |
+
#ENV ADMIN_PASSWORD=12345678
|
| 15 |
+
#
|
| 16 |
+
#ENV ANNOTATOR_USERNAME="argilla"
|
| 17 |
+
## The password has a minimum length of 8. Passwords with lower lengths will fail.
|
| 18 |
+
#ENV ANNOTATOR_PASSWORD=12345678
|
| 19 |
+
#
|
| 20 |
+
#ENV ARGILLA_WORKSPACE="team"
|
| 21 |
+
|
| 22 |
+
CMD /start_quickstart_argilla.sh
|
| 23 |
+
|
| 24 |
+
CMD /start_quickstart_argilla.sh
|