-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
40 lines (39 loc) · 1.7 KB
/
docker-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
# This docker-compose.yml file shows how Supervisor program(s) are reloaded automatically when file changes detected
# under web root /var/www. There are two environment variables used:
# 1. AUTORELOAD_PROGRAMS: space-separated Supervisor program(s) to be reloaded when file changes detected. e.g.,
# AUTORELOAD_PROGRAMS: "swoole" # Autoreload Supervisor program "swoole" only.
# AUTORELOAD_PROGRAMS: "swoole nginx" # Autoreload Supervisor program "swoole" and "nginx".
# 2. AUTORELOAD_ANY_FILES: Optional. If set to "true", "1", "yes", or "y", reload Supervisor program(s) when any
# files under the root directory (/var/www in this example) is changed; otherwise, reload only when PHP file(s)
# are changed.
#
version: '3'
services:
app:
build: .
container_name: cakephp-api-swoole-app
environment:
AUTORELOAD_PROGRAMS: "swoole"
AUTORELOAD_ANY_FILES: 0
# Don't use simple password like this one on production
DATABASE_URL: "mysql://my_app:secret@mysql/my_app?encoding=utf8&timezone=UTC&cacheMetadata=true"
ports:
- "80:9501"
- "9090:9090"
volumes:
- ./:/var/www
mysql:
image: mysql:5.7
container_name: cakephp-api-swoole-mysql
working_dir: /application
volumes:
- .:/application
environment:
- MYSQL_ROOT_PASSWORD=secret
- MYSQL_DATABASE=my_app
- MYSQL_USER=my_app
- MYSQL_PASSWORD=secret
# Don't use simple password like this one on production
command: mysqld --sql_mode="NO_ENGINE_SUBSTITUTION" --character-set-server=utf8 --collation-server=utf8_general_ci --init-connect='SET NAMES UTF8;' --innodb-flush-log-at-trx-commit=0
ports:
- "3306:3306"