Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alextselegidis/easyappointments-docker

๐Ÿ“… Docker Official Image packaging for Easy!Appointments
https://github.com/alextselegidis/easyappointments-docker

appointments calendar collaboration docker google-calendar javascript mysql open-source openapi php rest-api scheduler web

Last synced: 3 months ago
JSON representation

๐Ÿ“… Docker Official Image packaging for Easy!Appointments

Awesome Lists containing this project

README

        





Easy!Appointments



Easy!Appointments Docker



> NOTICE: This repository is undergoing major changes, make sure you update your existing clones before working on new features.



A powerful Open Source Appointment Scheduler that can be installed on your server.


GitHub
GitHub release (latest by date)
GitHub All Releases

Chat On Discord


About โ€ข
Features โ€ข
Setup โ€ข
Installation โ€ข
License

## About

**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.

## Features

The application is designed to be flexible enough so that it can handle any enterprise work flow.

* Customers and appointments management.
* Services and providers organization.
* Working plan and booking rules.
* Google Calendar synchronization.
* Email notifications system.
* Self hosted installation.
* Translated user interface.
* User community support.

## Setup

To clone and run this application, you'll need [Git](https://git-scm.com), [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) and [Composer](https://getcomposer.org) installed on your computer. From your command line:

```bash
# 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
```

Note: If you're using Linux Bash for Windows, [see this guide](https://www.howtogeek.com/261575/how-to-run-graphical-linux-desktop-applications-from-windows-10s-bash-shell/) or use `node` from the command prompt.

## Docker Compose

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'
environment:
- BASE_URL=http://localhost
- DEBUG_MODE=TRUE
- DB_HOST=mysql
- DB_NAME=easyappointments
- DB_USERNAME=root
- DB_PASSWORD=secret
ports:
- '80:80'
mysql:
image: 'mysql:8.0'
volumes:
- './docker/mysql:/var/lib/mysql'
environment:
- MYSQL_ROOT_PASSWORD=secret
- MYSQL_DATABASE=easyappointments

```

## License

Code Licensed Under [GPL v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html) | Content Under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)

---

Website [alextselegidis.com](https://alextselegidis.com) ย ยทย 
GitHub [alextselegidis](https://github.com/alextselegidis) ย ยทย 
Twitter [@alextselegidis](https://twitter.com/AlexTselegidis)