This open-source content management system combines flexibility with simple handling, making it ideal for small websites and complex portals alike. In just ten minutes, you can install the basic framework and start building. The platform's open architecture adapts to a wide variety of information management solutions.
Key features include:
Enjoy a lightweight system that adapts perfectly to your specific project requirements.
services:
redaxo:
image: friendsofredaxo/redaxo:latest
restart: unless-stopped
ports:
- "8080:80"
volumes:
- ./redaxo-data:/var/www/html
depends_on:
- db
db:
image: mariadb:10.6
restart: unless-stopped
volumes:
- ./db-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
MYSQL_DATABASE: redaxo
MYSQL_USER: redaxo
MYSQL_PASSWORD: ${DB_PASSWORD}DB_ROOT_PASSWORD=your_secure_root_password
DB_PASSWORD=your_secure_db_passwordAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago