dockerize stack
This commit is contained in:
30
docker-compose.env
Normal file
30
docker-compose.env
Normal file
@@ -0,0 +1,30 @@
|
||||
# ========================================
|
||||
# Environment Variables for Docker Compose
|
||||
# ========================================
|
||||
# Copy this file to .env and modify values as needed
|
||||
# cp docker-compose.env .env
|
||||
|
||||
# Database Configuration
|
||||
DATABASE_CLIENT=postgres
|
||||
DATABASE_HOST=postgres
|
||||
DATABASE_PORT=5432
|
||||
DATABASE_NAME=strapi
|
||||
DATABASE_USERNAME=strapi
|
||||
DATABASE_PASSWORD=strapi_password
|
||||
DATABASE_SSL=false
|
||||
|
||||
# Strapi Configuration
|
||||
NODE_ENV=development
|
||||
JWT_SECRET=your-jwt-secret-here-change-this-in-production
|
||||
ADMIN_JWT_SECRET=your-admin-jwt-secret-here-change-this-in-production
|
||||
APP_KEYS=your-app-keys-here-change-this-in-production
|
||||
API_TOKEN_SALT=your-api-token-salt-here-change-this-in-production
|
||||
TRANSFER_TOKEN_SALT=your-transfer-token-salt-here-change-this-in-production
|
||||
|
||||
# Server Configuration
|
||||
HOST=0.0.0.0
|
||||
PORT=1337
|
||||
|
||||
# Client Configuration
|
||||
CLIENT_NODE_ENV=development
|
||||
STRAPI_URL=http://strapi:1337
|
||||
Reference in New Issue
Block a user