alextselegidis / easyappointments-docker

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

Home Page:https://developers.easyappointments.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


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, Node.js (which comes with npm) and Composer installed on your computer. From your command line:

# 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 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:

version: '3.1'
services:
  easyapointments:
    image: 'alextselegidis/easyappointments:1.4.3'
    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 | Content Under CC BY 3.0


Website alextselegidis.com  Β·  GitHub alextselegidis  Β·  Twitter @alextselegidis

About

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

https://developers.easyappointments.org


Languages

Language:Shell 69.2%Language:Dockerfile 30.8%