forked from Censseo/miningcore-blackmennewstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (36 loc) · 1.64 KB
/
Copy path.env.example
File metadata and controls
42 lines (36 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Miningcore Docker Environment Configuration
# Copy this file to .env and update with your values
# NEVER commit .env to version control!
# =============================================================================
# PostgreSQL Database Configuration
# =============================================================================
# Database credentials
POSTGRES_USER=miningcore
POSTGRES_PASSWORD=changeme_secure_password_here
POSTGRES_DB=miningcore
# =============================================================================
# Application Configuration
# =============================================================================
# Version/tag for Docker images
VERSION=latest
# =============================================================================
# Configuration Files
# =============================================================================
# Note: Configuration files (config.json, init scripts) are managed via
# Docker configs in docker-compose.yml. See CONFIG.md and db/README.md
# for details on how to modify configurations.
# =============================================================================
# Security Notes
# =============================================================================
# 1. Generate a strong password for POSTGRES_PASSWORD
# Example: openssl rand -base64 32
#
# 2. Keep .env file secure with proper permissions:
# chmod 600 .env
#
# 3. Never expose database port (5432) to public networks in production
#
# 4. Use Docker secrets in production instead of .env files:
# https://docs.docker.com/engine/swarm/secrets/
#
# =============================================================================