-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
109 lines (104 loc) · 5.07 KB
/
compose.yml
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
98
99
100
101
102
103
104
105
106
107
108
109
#_===========================================================================_#
#? ONLY USE THESE SERVICES IN DEVELOPMENT! #
# #
# !!! NEVER EXPOSE THESE SERVICES IN PRODUCTION! !!! #
#_---------------------------------------------------------------------------_#
# Info: Run the following command to create the .env.docker file. #
# Info: `cp MODEL.env .env.docker` #
# Info: Then update the values. #
#_===========================================================================_#
services:
#_===========================================================================_#
# APP #
#_===========================================================================_#
app:
build: .docker/php
container_name: ${PROJECT_NAME}-app
restart: unless-stopped
ports:
- "${APP_PORT}:80"
volumes:
- ./.docker/apache/default.conf:/etc/apache2/sites-enabled/000-default.conf
- .:/var/www
# depends_on: # (Un)comment depending on the database you want to use.
# - mysql
# - pgsql
#_===========================================================================_#
# DATABASES #
#_---------------------------------------------------------------------------_#
# (Un)comment the service to enable the database you want to use. #
# #
#? Remember to: #
#? - (Un)comment the volumes and tools related to the choosen database. #
#? - Update the .env.docker file with the correct values. #
#_===========================================================================_#
# mysql:
# image: mysql
# container_name: ${PROJECT_NAME}-mysql
# restart: unless-stopped
# ports:
# - "${MYSQL_PORT:-3306}:3306"
# environment:
# MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:?'MYSQL_ROOT_PASSWORD is not set'}
# MYSQL_DATABASE: ${MYSQL_DATABASE:?'MYSQL_DATABASE is not set'}
# MYSQL_USER: ${MYSQL_USER:?'MYSQL_USER is not set'}
# MYSQL_PASSWORD: ${MYSQL_PASSWORD:?'MYSQL_PASSWORD is not set'}
# volumes:
# - mysql_data:/var/lib/mysql
# - .docker/mysql/mysql-init.sh:/docker-entrypoint-initdb.d/mysql-init.sh:ro
# pgsql:
# image: postgres
# container_name: ${PROJECT_NAME}-pgsql
# restart: unless-stopped
# ports:
# - "${PGSQL_PORT:-5432}:5432"
# environment:
# POSTGRES_DB: ${POSTGRES_DB:?'POSTGRES_DB is not set'}
# POSTGRES_USER: ${POSTGRES_USER:?'POSTGRES_USER is not set'}
# POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?'POSTGRES_PASSWORD is not set'}
# volumes:
# - pgsql_data:/var/lib/postgresql/data
# - ./.docker/pgsql/pgsql-init.sh:/docker-entrypoint-initdb.d/pgsql-init.sh:ro
#_===========================================================================_#
# TOOLS #
#_---------------------------------------------------------------------------_#
# (Un)comment the service to enable the tools you want to use. #
#_===========================================================================_#
# phpmyadmin: #? Uncomment if use of MySQL is enabled
# build: .docker/phpma
# container_name: ${PROJECT_NAME}-phpmyadmin
# restart: unless-stopped
# ports:
# - "${PHPMYADMIN_PORT}:80"
# environment:
# - PMA_HOST=mysql
# pgadmin: #? Uncomment if use of PostgreSQL is enabled
# image: dpage/pgadmin4
# container_name: ${PROJECT_NAME}-pgadmin
# restart: unless-stopped
# environment:
# PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL}
# PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD}
# ports:
# - "${PGADMIN_PORT}:80"
# volumes:
# - pgadmin_data:/var/lib/pgadmin
# mailpit:
# image: axllent/mailpit
# container_name: ${PROJECT_NAME}-mailpit
# restart: unless-stopped
# ports:
# - "${MAILPIT_SMTP_PORT:?'MAILPIT_SMTP_PORT is not set'}:1025"
# - "${MAILPIT_HTTP_PORT:?'MAILPIT_HTTP_PORT is not set'}:8025"
#_=============================================================================_#
# VOLUMES #
#_-----------------------------------------------------------------------------_#
# (Un)comment the volume related to the used database. #
#_=============================================================================_#
# volumes:
# mysql_data: #? Uncomment if use of MySQL is enabled
# driver: local
# pgsql_data: #? Uncomment if use of PostgreSQL is enabled
# driver: local
# pgadmin_data: #? Uncomment if use of PostgreSQL is enabled
# driver: local