project-knedita/docker.env.example

32 lines
680 B
Text
Raw Permalink Normal View History

# Environment
NODE_ENV=production
# Postgres config
POSTGRES_DB=<placeholder>
POSTGRES_USER=<placeholder>
POSTGRES_PASSWORD=<placeholder>
2024-02-15 13:48:27 +00:00
# Use this hostname on Docker
DB_HOST=postgres
2024-01-31 12:58:50 +00:00
DATABASE_URL=postgresql://<USER>:<PASS>@${DB_HOST}:<PORT>/${POSTGRES_DB}?schema=<PROD-SCHEMA>
# Redis
2024-02-15 13:48:27 +00:00
# Use this hostname on Docker
REDIS_HOST=redis
REDIS_PORT=<placeholder>
REDIS_PASSWORD=<same_as_defined_in_docker_compose_file>
# Fastify
SERVER_PORT=<placeholder>
2024-01-30 21:29:45 +00:00
SERVER_HOST=<placeholder>
# Security
JWT_ACCESS_SECRET=<placeholder>
# Minio
MINIO_ROOT_USER=<username>
MINIO_ROOT_PASSWORD=<password_more_or_equal_to_8_characters>
MINIO_DEFAULT_BUCKETS=<bucket_name>
2024-02-15 13:48:27 +00:00
MINIO_ENDPOINT=<url>