Build and manage powerful online applications and websites using a highly flexible, open-source content management system. Backed by a global community of volunteers, this platform offers a robust foundation for creators looking to design custom digital experiences without licensing fees. Whether you are launching a simple blog or a complex web application, you have access to thousands of free extensions and templates to match your exact requirements. Key features include:
services:
joomla:
image: joomla:latest
restart: always
ports:
- 8080:80
environment:
JOOMLA_DB_HOST: db
JOOMLA_DB_USER: ${JOOMLA_DB_USER}
JOOMLA_DB_PASSWORD: ${JOOMLA_DB_PASSWORD}
JOOMLA_DB_NAME: ${JOOMLA_DB_NAME}
volumes:
- ./joomla_data:/var/www/html
depends_on:
- db
db:
image: mysql:8.0
restart: always
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: ${JOOMLA_DB_NAME}
MYSQL_USER: ${JOOMLA_DB_USER}
MYSQL_PASSWORD: ${JOOMLA_DB_PASSWORD}
volumes:
- ./db_data:/var/lib/mysqlJOOMLA_DB_USER=joomla
JOOMLA_DB_PASSWORD=your_strong_password
JOOMLA_DB_NAME=joomla_db
MYSQL_ROOT_PASSWORD=your_root_passwordAuto-fetched about 20 hours ago
Auto-fetched about 20 hours ago