friendsofredaxo/demo

By friendsofredaxo

•Updated 23 days ago

Docker website demo images for REDAXO

Image
Integration & delivery
Content management system
3

8.6K

friendsofredaxo/demo repository overview

Publish

⁠Docker website demo images for REDAXO

A collection of website demos for REDAXO⁠ CMS, developed and maintained by Friends Of REDAXO⁠.

Screenshot

Images are published both on Docker Hub⁠ and on GitHub Container Registry⁠, so you can choose between:

  • friendsofredaxo/demo
  • ghcr.io/friendsofredaxo/demo

⁠Supported tags

⁠Environment variables

šŸ‘‰ Environment variables correspond 1:1 to those of the REDAXO image. Find a complete list here:
FriendsOfREDAXO/docker-redaxo/#environment-variables⁠

⁠Usage

šŸ‘‰ 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.

⁠With 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:

⁠Recipes

🧁 See recipes⁠ section for further examples!

⁠Need help?

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/⁠

Tag summary

Content type

Image

Digest

sha256:c80aa361f…

Size

261.5 MB

Last updated

23 days ago

docker pull friendsofredaxo/demo:community