File tree Expand file tree Collapse file tree 1 file changed +0
-47
lines changed
Expand file tree Collapse file tree 1 file changed +0
-47
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ Article map:
1515Use a prebuilt version for a production instance, https://hub.docker.com/r/espocrm/espocrm .
1616
1717```
18- version: '3.8'
19-
2018services:
2119
2220 espocrm-db:
@@ -84,56 +82,11 @@ volumes:
8482
8583Run ` docker compose up -d ` , wait for it to initialize completely, and visit ` http://localhost:8080 ` .
8684
87- ### Legacy Usage (EspoCRM v6.1.7 and earlier)
88-
89- ```
90- version: '3.1'
91-
92- services:
93-
94- mysql:
95- container_name: mysql
96- image: mysql:8
97- command: --default-authentication-plugin=mysql_native_password
98- restart: always
99- environment:
100- MYSQL_ROOT_PASSWORD: example
101- volumes:
102- - mysql:/var/lib/mysql
103-
104- espocrm:
105- container_name: espocrm
106- image: espocrm/espocrm
107- environment:
108- ESPOCRM_DATABASE_PASSWORD: example
109- ESPOCRM_ADMIN_USERNAME: admin
110- ESPOCRM_ADMIN_PASSWORD: password
111- ESPOCRM_SITE_URL: "http://localhost:8080"
112- restart: always
113- ports:
114- - 8080:80
115- volumes:
116- - espocrm:/var/www/html
117-
118- espocrm-cron:
119- image: espocrm/espocrm
120- volumes:
121- - espocrm:/var/www/html
122- restart: always
123- entrypoint: docker-cron.sh
124-
125- volumes:
126- mysql:
127- espocrm:
128- ```
129-
13085### Usage (only for development)
13186
13287Example ` docker-compose.yml ` :
13388
13489```
135- version: '3.1'
136-
13790services:
13891
13992 mysql:
You can’t perform that action at this time.
0 commit comments