Free Edition of the hyper Content & Digital Asset Management Server
3.4K
The Docker image of the Free Edition is based on Debian 12 and PHP 8.2. Older versions are based on Debian 11 or Debian 10.
Please report any issues on Bitbucket: https://bitbucket.org/hypercms/hyper-content-digital-asset-management-server-core/issues?status=new&status=open
For more information, please visit: https://www.hypercms.com
Copy the YAML code into the docker-compose.yaml file. It will pull the hyperCMS and MariaDB image and create two volumes for the data.
version: '3'
# Services
services:
# Database
db:
image: mariadb:latest
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: hypercms
MYSQL_USER: hypercms
MYSQL_PASSWORD: hyperCMS123
networks:
- hypercmsnet
# hyperCMS
hypercms-free:
depends_on:
- db
image: hypercms/hypercms-free-edition:latest
ports:
- '80:80'
- '443:443'
restart: always
volumes:
- hypercms_data:/var/www/html
environment:
HYPERCMS_DB_HOST: db:3306
HYPERCMS_DB_USER: hypercms
HYPERCMS_DB_PASSWORD: hyperCMS123
networks:
- hypercmsnet
# Networks
networks:
hypercmsnet:
# Volumes
volumes:
db_data:
hypercms_data:
Change to the directory of the docker-compose.yaml file and run it with
docker-compose up -d
Open your browser and access "localhost" to start with the installation. Provide all required information for your admin account (password, name, e.-mail). For the database use the credentials defined in the file docker-compose.yaml:
Database host: db
Database user name: hypercms
Database password: hyperCMS123
Database name: hypercms
The path to the executables are automatically set by the system. After the installation you should see the logon screen. Use "admin" as user name and your password.
Content type
Image
Digest
sha256:8f33ae8b0…
Size
1.4 GB
Last updated
6 months ago
docker pull hypercms/hypercms-free-edition