Build sophisticated, dynamic web applications by writing simple SQL queries. This open-source tool allows you to create beautiful user interfaces directly on top of your existing database, transforming your data into interactive websites, dashboards, and internal tools without traditional web programming.
Focus on your data and let the tool handle the complexities of web development. Key benefits include:
Create multi-page interactive experiences where users can drill down, comment, and edit data, moving beyond the limitations of static dashboards.
services:
sqlpage:
image: lovasoa/sqlpage:latest
container_name: sqlpage
ports:
- "8080:8080"
environment:
- DATABASE_URL=${DATABASE_URL}
volumes:
- ./sqlpage:/etc/sqlpage
restart: unless-stopped
# Connection string to your database (SQLite, PostgreSQL, MySQL, Microsoft SQL Server, etc.)
# Example for PostgreSQL: postgres://user:password@host:5432/dbname
# Example for MySQL: mysql://user:password@host:3306/dbname
# Defaulting to a local SQLite database stored in the mapped volume for easy setup
DATABASE_URL=sqlite:////etc/sqlpage/sqlpage.db
Auto-fetched about 22 hours ago
Auto-fetched about 22 hours ago