Prepare changes for version 1.6.0

#4
by frascuchon - opened
Files changed (1) hide show
  1. Dockerfile +15 -2
Dockerfile CHANGED
@@ -1,6 +1,19 @@
1
- FROM argilla/argilla-quickstart:v1.5.0
2
 
3
  # Define datasets to preload: full=all datasets, single=one dataset, and none=no datasets.
4
  ENV LOAD_DATASETS=single
5
 
6
- CMD whoami && /start_quickstart_argilla.sh
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Uncomment the next section to keep backward compatibility with previous versions
7
+ ## Following variables are used for backward compatibility with the previous security setup for the quickstart image
8
+ #ENV ADMIN_USERNAME="team"
9
+ #ENV ADMIN_API_KEY="team.apikey"
10
+ ## The password has a minimum length of 8. Passwords with lower lengths will fail.
11
+ #ENV ADMIN_PASSWORD=12345678
12
+ #
13
+ #ENV ANNOTATOR_USERNAME="argilla"
14
+ ## The password has a minimum length of 8. Passwords with lower lengths will fail.
15
+ #ENV ANNOTATOR_PASSWORD=12345678
16
+ #
17
+ #ENV ARGILLA_WORKSPACE="team"
18
+
19
+ CMD /start_quickstart_argilla.sh