Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alextselegidis/easyappointments-docker
- Owner: alextselegidis
- Created: 2021-07-08T14:04:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-30T08:48:35.000Z (4 months ago)
- Last Synced: 2024-11-01T07:51:51.595Z (3 months ago)
- Topics: appointments, calendar, collaboration, docker, google-calendar, javascript, mysql, open-source, openapi, php, rest-api, scheduler, web
- Language: Shell
- Homepage: https://developers.easyappointments.org
- Size: 21.5 KB
- Stars: 24
- Watchers: 5
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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.
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)