-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.postgres.yml
executable file
·45 lines (42 loc) · 1.12 KB
/
docker-compose.postgres.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
version: '2.1'
services:
wheelie_cfml:
image: ortussolutions/commandbox:latest
depends_on:
- wheelie_postgres
environment:
PORT: 8080
SSL_PORT: 8443
CFENGINE: [email protected]+9
CFCONFIG_ADMINPASSWORD: NOT_SECURE_CHANGE
WHEELIE_ADMIN_USERNAME: admin
WHEELIE_ADMIN_PASSWORD: admin
WHEELIE_ADMINEMAIL: [email protected]
WHEELIE_APPRELOADKEY: appreload
WHEELIE_DATASOURCE: wheelie
WHEELIE_DATABASE: wheeliedb
WHEELIE_DBTYPE: mysql
WHEELIE_DBUSERNAME: root
WHEELIE_DBPASSWORD: NOT_SECURE_CHANGE
WHEELIE_DBHOST: wheelie_mysql
WHEELIE_DBPORT: 3306
WHEELIE_SITEIDINURLS: "false"
WHEELIE_INDEXFILEINURLS: "true"
WHEELIE_TESTBOX: "true"
volumes:
- .:/app
ports:
- "8080:8080"
#POSTGRES
wheelie_postgres:
image: postgres:latest
environment:
POSTGRES_DB: wheeliedb
POSTGRES_USER: wheeliedb
POSTGRES_PASSWORD: NOT_SECURE_CHANGE
volumes:
- wheelie_postgres_data:/var/lib/postgresql/data
ports:
- "5432:5432"
volumes:
wheelie_postgres_data: