forked from Dallas-Makerspace/makermanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
31 lines (31 loc) · 919 Bytes
/
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
version: '2'
services:
db:
image: mariadb:5.5
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: 'cakephp'
MYSQL_DATABASE: 'cakephp'
app:
build: .
volumes:
- ./logs/cakephp:/www/app/logs
links:
- db
environment:
DEBUG: 'true'
DB_HOST: 'db' # Leave this as 'db' to utilize MySQL container(s)
DB_USERNAME: 'root'
DB_PASSWORD: 'cakephp'
DB_DATABASE: 'cakephp'
DB_SEED: 'DatabaseSeed'
VIRTUAL_HOST: 'makermanager.dallasmakerspace.org'
EMAIL_HOST: 'localhost'
EMAIL_PORT: '25'
EMAIL_TIMEOUT: '30'
EMAIL_USERNAME: 'user'
EMAIL_PASSWORD: 'secret'
EMAIL_TLS: 'false'
REPO: 'https://github.com/Dallas-Makerspace/makermanager.git'
REPO_HOST: 'github.com'