-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrappe-deployment.txt
30 lines (20 loc) · 984 Bytes
/
frappe-deployment.txt
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
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Container Configuration
ports:
ports:
- "3307:3307" mariadb-port
- "8000:8000" webserver-port
- "11000:11000" redis-cache
- "12000:12000" redis-queue
- "13000:13000" redis-socketio
- "9000:9000" socketio-port
- "6787:6787" file-watcher-port
volumes:
links:
- redis-cache
- redis-queue
- redis-socketio
- mariadb
Express dependency between services, which has two effects:
1 docker-compose up will start services in dependency order. In the following example, mariadb and redis will be started before frappe.
2 docker-compose up SERVICE will automatically include SERVICE’s dependencies. In the following example, docker-compose up docker_frappe will also create and start mariadb and redis.