Sign inSign up

alextselegidis/easyappointments

By alextselegidis

•Updated 4 months ago

Easy!Appointments is a widely used, open source, online appointment scheduler application.

Image
Content management system
26

100K+

alextselegidis/easyappointments repository overview

⁠
Easy!Appointments Docker


⁠ 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

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

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

⁠SMTP Configuration

You can use the following MAIL environment variables

  • MAIL_PROTOCOL=smtp
  • MAIL_SMTP_DEBUG=0 // or "1"
  • MAIL_SMTP_AUTH=0 // or "1"
  • MAIL_SMTP_HOST=smtp.example.org
  • MAIL_SMTP_USER=
  • MAIL_SMTP_PASS=
  • MAIL_SMTP_CRYPTO=tls // or "ssl"
  • MAIL_SMTP_PORT=587
  • MAIL_FROM_ADDRESS=[email protected]⁠
  • MAIL_FROM_NAME=Example
  • MAIL_REPLY_TO_ADDRESS=[email protected]⁠

⁠License

Code Licensed Under GPL v3.0⁠ | Content Under CC BY 3.0⁠


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

Tag summary

Content type

Image

Digest

sha256:4faa30476…

Size

206.6 MB

Last updated

4 months ago

docker pull alextselegidis/easyappointments