Files
templates/blueprints/easyappointments/docker-compose.yml
Copilot 9501d5f974 Add Easy!Appointments template (#608)
* Initial plan

* Add Easyappointments template with docker-compose, template.toml, and meta.json entry

Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com>

* Update blueprints/easyappointments/template.toml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update template.toml

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-12-19 18:16:25 -06:00

30 lines
611 B
YAML

version: "3.8"
services:
easyappointments:
image: alextselegidis/easyappointments:1.5.0
restart: unless-stopped
environment:
- BASE_URL=http://${DOMAIN}
- DB_HOST=mysql
- DB_NAME=easyappointments
- DB_USERNAME=root
- DB_PASSWORD=${DB_PASSWORD}
volumes:
- easyappointments:/var/www/html
depends_on:
- mysql
mysql:
image: mysql:8.0
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=${DB_PASSWORD}
- MYSQL_DATABASE=easyappointments
volumes:
- mysql:/var/lib/mysql
volumes:
easyappointments:
mysql: