2020-04-08 14:35:33 +03:00
|
|
|
version: "3.1"
|
2018-11-03 17:15:20 +03:00
|
|
|
services:
|
2020-04-08 14:35:33 +03:00
|
|
|
mysql:
|
2020-03-10 22:42:08 +03:00
|
|
|
image: mysql:5.7
|
2020-04-08 14:35:33 +03:00
|
|
|
container_name: easyappointments-database
|
2018-11-03 17:15:20 +03:00
|
|
|
volumes:
|
2020-04-08 14:35:33 +03:00
|
|
|
- ./mysql:/var/lib/mysql
|
2018-11-03 17:15:20 +03:00
|
|
|
environment:
|
2020-04-08 14:35:33 +03:00
|
|
|
- MYSQL_ROOT_PASSWORD=root
|
|
|
|
- MYSQL_DATABASE=easyappointments
|
|
|
|
ports:
|
|
|
|
- "8001:3306"
|
|
|
|
server:
|
|
|
|
build: ./server
|
|
|
|
image: easyappointments-server:v1
|
|
|
|
container_name: easyappointments-server
|
|
|
|
ports:
|
|
|
|
- "8000:80"
|
|
|
|
volumes:
|
|
|
|
- ../:/var/www/html
|
|
|
|
- ./server/php.ini:/usr/local/etc/php/conf.d/99-overrides.ini
|