-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.example
executable file
·85 lines (65 loc) · 2.05 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
###########################################################
###################### General Setup ######################
###########################################################
# Rinvex:
# docker-compose up -d redis mysql mariadb portainer workspace php-fpm nginx
# Paths
WEB_DATA_PATH=../
# Orbstack Local Domains
LOCAL_DOMAINS=phpmyadmin.local,portainer.local,grafana.local,prometheus.local,*.rinvex.local,*.tenant.local,*.dev.local
# Drivers
NETWORKS_DRIVER=bridge
# Docker compose config
# Which docker-compose files to include.
# If using docker-sync append `:docker-compose.sync.yml` at the end
COMPOSE_FILE=docker-compose.yml
# Change the separator from : to ; on Windows
COMPOSE_PATH_SEPARATOR=:
# Define the prefix of container names. This is useful if you have multiple projects that use punnet to have seperate containers per project.
COMPOSE_PROJECT_NAME=punnet
###########################################################
################ Containers Customization #################
###########################################################
# GLOBAL
TZ=UTC
# WORKSPACE
NODE_VERSION=stable
# NGINX
NGINX_VERSION=alpine
NGINX_HOST_HTTP_PORT=80
NGINX_HOST_HTTPS_PORT=443
NGINX_LOG_PATH=./.logs/nginx/
NGINX_CONFIG_PATH=./.config/nginx/
PHP_UPSTREAM_CONTAINER=php-fpm
PHP_UPSTREAM_PORT=9000
# PHP
PHP_VERSION=8.3-fpm
PHP_CONFIG_PATH=./.config/php/
# MYSQL
MYSQL_VERSION=latest
MYSQL_PORT=3306
MYSQL_ROOT_PASSWORD=root
MYSQL_DATA_PATH=./.data/mysql
MYSQL_ENTRYPOINT_INITDB=./.stubs/mysql/docker-entrypoint-initdb.d
# MARIADB
MARIADB_VERSION=latest
MARIADB_PORT=3306
MARIADB_ROOT_PASSWORD=root
MARIA_DATA_PATH=./.data/maria
MARIADB_ENTRYPOINT_INITDB=./.stubs/mysql/docker-entrypoint-initdb.d
# REDIS
REDIS_VERSION=alpine
REDIS_PORT=6379
REDIS_DATA_PATH=./.data/redis
# PORTAINER
PORTAINER_VERSION=latest
PORTAINER_DATA_PATH=./.data/portainer
# PROMETHEUS
PROMETHEUS_VERSION=latest
PROMETHEUS_PORT=9090
PROMETHEUS_DATA_PATH=./.data/prometheus
PROMETHEUS_CONFIG_PATH=./.config/prometheus/
# GRAFANA
GRAFANA_VERSION=latest
GRAFANA_PORT=3000
GRAFANA_DATA_PATH=./.data/grafana/