Easy!Appointments is a widely used, open source, online appointment scheduler application.
100K+
Easy!Appointments is a highly customizable web application that allows customers to book appointments with you via a sophisticated web interface. Moreover, it provides the ability to sync your data with Google Calendar so you can use them with other services. It is an open source project that you can download and install even for commercial use. Easy!Appointments will run smoothly with your existing website as it can be installed in a single folder of the server and of course share an existing database.
The application is designed to be flexible enough so that it can handle any enterprise work flow.
To use this image you will need to at least have an available MySQL database.
# Start a MySQL instance
$ docker run -d --name test-db -e MYSQL_ROOT_PASSWORD=secret -e MYSQL_DATABASE=easyappointments mysql:latest
# Pull and run the app
$ docker run --name test-app -d --link test-db:db -p 80:80 -e DB_HOST=db -e DB_NAME=easyappointments -e DB_USERNAME=root -e DB_PASSWORD=secret alextselegidis/easyappointments:latest
You can use the following docker-compose.yml file to locally set up Easy!Appointments with a MySQL database:
services:
easyapointments:
image: alextselegidis/easyappointments:latest
restart: always
ports:
- '80:80'
environment:
- BASE_URL=http://localhost
- DEBUG_MODE=TRUE
- DB_HOST=mysql
- DB_NAME=easyappointments
- DB_USERNAME=root
- DB_PASSWORD=secret
- MAIL_PROTOCOL=mail
- MAIL_SMTP_DEBUG=0
- MAIL_SMTP_AUTH=0
- MAIL_SMTP_HOST=smtp.example.org
- MAIL_SMTP_USER=
- MAIL_SMTP_PASS=
- MAIL_SMTP_CRYPTO=tls
- MAIL_SMTP_PORT=587
- [email protected]
- MAIL_FROM_NAME=Example
- [email protected]
mysql:
image: mysql:8.0
restart: always
environment:
- MYSQL_ROOT_PASSWORD=secret
- MYSQL_DATABASE=easyappointments
volumes:
- mysql:/var/lib/mysql
volumes:
mysql:
You can use the following MAIL environment variables
Code Licensed Under GPL v3.0 | Content Under CC BY 3.0
Website alextselegidis.com · GitHub alextselegidis · Twitter @alextselegidis
Content type
Image
Digest
sha256:4faa30476…
Size
206.6 MB
Last updated
4 months ago
docker pull alextselegidis/easyappointments