-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.env
More file actions
41 lines (33 loc) · 1.32 KB
/
Copy pathproject.env
File metadata and controls
41 lines (33 loc) · 1.32 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
# =============================================================================
# DevStack Project Configuration
# =============================================================================
# This file defines the core settings for your development stack.
# Edit these values to match your project, then run: ./devstack.sh start
# =============================================================================
# Project name — used for container prefixes, network names, cert CN
PROJECT_NAME=myproject
# Network subnet for the internal Docker network
NETWORK_SUBNET=172.28.0.0/24
# App configuration
# Type must match a directory in templates/apps/ (php-laravel, go, node-express)
APP_TYPE=node-express
# Path to your application source code (relative to this file)
APP_SOURCE=./app
# Project-specific init script run inside the app container on first start
# Leave empty to skip
APP_INIT_SCRIPT=./app/init.sh
# Ports exposed on the host machine
HTTP_PORT=8080
HTTPS_PORT=8443
TEST_DASHBOARD_PORT=8082
MAILPIT_PORT=8025
# Database configuration
# Type must match a directory in templates/databases/ (mariadb, postgres, none)
DB_TYPE=mariadb
DB_NAME=myproject
DB_USER=myproject
DB_PASSWORD=secret
DB_ROOT_PASSWORD=root
# Extra services — comma-separated list of directories in templates/extras/
# Available: redis, mailpit
EXTRAS=redis