mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-29 02:55:22 +02:00
* 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>
30 lines
611 B
YAML
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:
|