public-demo / Dockerfile
JonnyTran
debug
36b91a5
raw
history blame
991 Bytes
FROM extralit/extralit-quickstart:main
# Copy the auth config section
COPY .oauth.yaml /home/argilla/
# ENV OAUTH_ID=""
# Uncomment the next section to keep backward compatibility with previous versions
## Following variables are used for backward compatibility with the previous security setup for the quickstart image
ENV ADMIN_USERNAME="team"
ENV ADMIN_API_KEY="team.apikey"
ENV ADMIN_PASSWORD=12345678
ENV ANNOTATOR_USERNAME="argilla"
ENV ANNOTATOR_PASSWORD=12345678
ENV ARGILLA_WORKSPACE="team"
#
ARG ARGILLA_DATABASE_URL=""
ARG S3_ENDPOINT=""
ARG S3_ACCESS_KEY=""
ARG S3_SECRET_KEY=""
ARG EXTRALIT_URL=""
# Uncomment the next line if a new version of Argilla requires a dataset search reindex.
ENV REINDEX_DATASETS=false
# (since: v1.28.0) Uncomment the next line to force not showing warning message about Hugging Face Space persistent storage not enabled.
ENV ARGILLA_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false
# CMD ["/bin/bash", "start_quickstart_argilla.sh"]