ricspse/stabilityai-stable-cascade
0
1FROM argilla/argilla-quickstart:v1.23.12 3# Copy the auth config section4COPY .oauth.yaml /home/argilla/5 6# Define datasets to preload: full=all datasets, single=one dataset, and none=no datasets.7ENV LOAD_DATASETS=none8ENV OAUTH_ID=""9 10# Uncomment the next section to keep backward compatibility with previous versions11## Following variables are used for backward compatibility with the previous security setup for the quickstart image12#ENV ADMIN_USERNAME="team"13#ENV ADMIN_API_KEY="team.apikey"14## The password has a minimum length of 8. Passwords with lower lengths will fail.15#ENV ADMIN_PASSWORD=1234567816#17#ENV ANNOTATOR_USERNAME="argilla"18## The password has a minimum length of 8. Passwords with lower lengths will fail.19#ENV ANNOTATOR_PASSWORD=1234567820#21#ENV ARGILLA_WORKSPACE="team"22#23 24CMD ["/bin/bash", "start_quickstart_argilla.sh"]25 