Take full ownership of your hospitality business with a comprehensive, open-source property management ecosystem. This platform provides everything needed to launch a multilingual and multicurrency reservation website in minutes, allowing you to manage both front-desk and online bookings from a single interface. Whether you run a boutique B&B, a chain of hotels, or vacation rentals, the flexible architecture adapts to your specific operational needs.
Key benefits include:
services:
qloapps:
image: webkul/qloapps:latest
container_name: qloapps
ports:
- "8080:80"
environment:
- DB_SERVER=db
- DB_USER=${DB_USER}
- DB_PASSWD=${DB_PASSWORD}
- DB_NAME=${DB_NAME}
volumes:
- ./data/html:/var/www/html
depends_on:
- db
restart: always
db:
image: mysql:5.7
container_name: qloapps_db
environment:
- MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
- MYSQL_DATABASE=${DB_NAME}
- MYSQL_USER=${DB_USER}
- MYSQL_PASSWORD=${DB_PASSWORD}
volumes:
- ./data/mysql:/var/lib/mysql
restart: alwaysDB_USER=qloapps_user
DB_PASSWORD=secure_db_password
DB_NAME=qloapps
DB_ROOT_PASSWORD=secure_root_passwordAuto-fetched about 24 hours ago
Auto-fetched about 24 hours ago