dependency and env variables
This commit is contained in:
parent
1f0a9a60ce
commit
bb54ed1177
10
.env.example
10
.env.example
|
@ -71,3 +71,13 @@ IDHUB_ENABLE_EMAIL=false
|
||||||
IDHUB_ENABLE_2FACTOR_AUTH=false
|
IDHUB_ENABLE_2FACTOR_AUTH=false
|
||||||
IDHUB_ENABLE_DOMAIN_CHECKER=false
|
IDHUB_ENABLE_DOMAIN_CHECKER=false
|
||||||
IDHUB_PREDEFINED_TOKEN='27f944ce-3d58-4f48-b068-e4aa95f97c95'
|
IDHUB_PREDEFINED_TOKEN='27f944ce-3d58-4f48-b068-e4aa95f97c95'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#POSTGRES VARS
|
||||||
|
|
||||||
|
DB_NAME="devicehub"
|
||||||
|
DB_USER="ereuse"
|
||||||
|
DB_PASSWORD="ereuse"
|
||||||
|
DB_DOMAIN=localhost
|
||||||
|
DB_PORT=8000
|
||||||
|
|
|
@ -4,6 +4,7 @@ FROM python:3.11.10-slim-bookworm
|
||||||
RUN apt update && \
|
RUN apt update && \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
python3-xapian \
|
python3-xapian \
|
||||||
|
python3-psycopg2 \
|
||||||
git \
|
git \
|
||||||
sqlite3 \
|
sqlite3 \
|
||||||
curl \
|
curl \
|
||||||
|
|
Loading…
Reference in a new issue