frascuchon commited on
Commit
1c7e8f0
1 Parent(s): 894534a

Prepare default setup for 1.6.0 version

Browse files

Add comment section for backward compatibility

Files changed (1) hide show
  1. Dockerfile +14 -1
Dockerfile CHANGED
@@ -3,4 +3,17 @@ FROM argilla/argilla-quickstart:v1.5.0
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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