Docker website demo images for REDAXO
8.6K
A collection of website demos for REDAXOā CMS, developed and maintained by Friends Of REDAXOā .

Images are published both on Docker Hubā and on GitHub Container Registryā , so you can choose between:
friendsofredaxo/demoghcr.io/friendsofredaxo/demobaseonepagecommunityfullpageš Environment variables correspond 1:1 to those of the REDAXO image. Find a complete list here:
FriendsOfREDAXO/docker-redaxo/#environment-variablesā
š Note that the demos are used 1:1 like the REDAXO image, except that you chose a different source: For the code examples we use friendsofredaxo/demo:base, which is the base demo.
docker-composeā Example for REDAXO base demo container with MariaDB container:
version: '3'
services:
redaxo:
image: friendsofredaxo/demo:base
ports:
- 80:80
volumes:
- redaxo:/var/www/html
environment:
REDAXO_SERVER: http://localhost
REDAXO_SERVERNAME: 'My Website'
REDAXO_ERROR_EMAIL: [email protected]
REDAXO_LANG: en_gb
REDAXO_TIMEZONE: Europe/London
REDAXO_DB_HOST: db
REDAXO_DB_NAME: redaxo
REDAXO_DB_LOGIN: redaxo
REDAXO_DB_PASSWORD: 's3cretpasswOrd!'
REDAXO_DB_CHARSET: utf8mb4
REDAXO_ADMIN_USER: admin
REDAXO_ADMIN_PASSWORD: 'PunKisNOT!dead'
db:
image: mariadb:10.11
volumes:
- db:/var/lib/mysql
environment:
MYSQL_DATABASE: redaxo
MYSQL_USER: redaxo
MYSQL_PASSWORD: 's3cretpasswOrd!'
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
volumes:
redaxo:
db:
š§ See recipesā section for further examples!
If you have questions or need help, feel free to contact us in Slack Chat! You will receive an invitation here: https://redaxo.org/slack/ā
Content type
Image
Digest
sha256:c80aa361fā¦
Size
261.5 MB
Last updated
23 days ago
docker pull friendsofredaxo/demo:community