mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
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>
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
||||
node_modules
|
||||
package-lock.json
|
||||
meta.json.backup.*
|
||||
|
||||
|
||||
29
blueprints/easyappointments/docker-compose.yml
Normal file
29
blueprints/easyappointments/docker-compose.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
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:
|
||||
BIN
blueprints/easyappointments/logo.png
Normal file
BIN
blueprints/easyappointments/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.4 KiB |
13
blueprints/easyappointments/template.toml
Normal file
13
blueprints/easyappointments/template.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
db_password = "${password:32}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "easyappointments"
|
||||
port = 80
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
DOMAIN = "${main_domain}"
|
||||
DB_PASSWORD = "${db_password}"
|
||||
17
meta.json
17
meta.json
@@ -2033,6 +2033,23 @@
|
||||
"simple"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "easyappointments",
|
||||
"name": "Easy!Appointments",
|
||||
"version": "1.5.0",
|
||||
"description": "Easy!Appointments is a highly customizable web application that allows customers to book appointments with you via a sophisticated web interface.",
|
||||
"logo": "logo.png",
|
||||
"links": {
|
||||
"github": "https://github.com/alextselegidis/easyappointments",
|
||||
"website": "https://easyappointments.org",
|
||||
"docs": "https://easyappointments.org/docs"
|
||||
},
|
||||
"tags": [
|
||||
"scheduling",
|
||||
"appointments",
|
||||
"booking"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "elastic-search",
|
||||
"name": "Elasticsearch",
|
||||
|
||||
Reference in New Issue
Block a user