-
Notifications
You must be signed in to change notification settings - Fork 9
/
.env.example
97 lines (71 loc) · 1.55 KB
/
.env.example
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# The app hostname
APP_HOST=laradhoc.test
# The app name
APP_NAME="Laradhoc"
# Prefix for all container names. Don't use spaces.
CONTAINER_PREFIX=laradhoc
# Path of your codebase (without trailing slash)
APP_SRC=./src
# Set to 1 to enable HTTPS, 0 to run only over HTTP
NGINX_ENABLE_HTTPS=1
# Port on which Nginx is listening
NGINX_PORT_80=80
# Port on which Nginx is listening (HTTPS)
NGINX_PORT_443=443
# Specify which PHP version to use
#
# Supported values:
# 7.2
# 7.3
# 7.4
# 8.0
# 8.1
# 8.2
# 8.3
#
PHP_VERSION=8.3
# Specify a Docker image for your database (MySQL or MariaDB)
#
# Supported values:
# mysql
# mariadb
#
# You can specify a valid tag
#
# Please see https://hub.docker.com/_/mysql and https://hub.docker.com/_/mariadb
# for valid tags.
#
# Examples:
# mysql
# mariadb
# mysql:8
# mysql:latest
# mariadb:10.3
#
DATABASE_IMAGE=mysql:latest
# MySQL / MariaDB PORT
MYSQL_PORT=3306
# Database name
MYSQL_DATABASE=laradhoc
# Database user
MYSQL_USER=user
# Database user password
MYSQL_PASSWORD=password
# Database root password
MYSQL_ROOT_PASSWORD=root
# Port on which phpMyAdmin is listening
PHPMYADMIN_PORT=8080
# MongoDB root user
MONGODB_ROOT_USER=root
# MongoDB root password
MONGODB_ROOT_PASSWORD=password
# MongoDB database
MONGODB_DATABASE=laradhoc
# MongoDB custom user
MONGODB_USER=user
# MongoDB custom password
MONGODB_PASSWORD=password
# Set to 1 to enable XDebug
ENABLE_XDEBUG=1
# Port on which MailHog replies (SMTP server for development purpose: https://github.com/mailhog/MailHog)
MAILHOG_PORT=8081