|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/CyberCP/dockerManager/ |
Upload File : |
version: '3.8'
services:
wordpress:
image: cyberpanel/openlitespeed:latest
ports:
- "8000:8088"
# - "443:443"
environment:
DB_NAME: "wordpress"
DB_USER: "wpuser"
DB_PASSWORD: "wppassword"
WP_ADMIN_EMAIL: "admin@example.com"
WP_ADMIN_USER: "admin"
WP_ADMIN_PASSWORD: "adminpass"
WP_URL: docker.cyberpanel.net
DB_Host: mariadb:3306
SITE_NAME: "CyberPanel Docker Site"
depends_on:
- mariadb
mariadb:
image: mariadb
restart: always
environment:
ALLOW_EMPTY_PASSWORD=no
MYSQL_DATABASE: 'wordpress'
MYSQL_USER: 'wpuser'
MYSQL_PASSWORD: 'wppassword'
MYSQL_ROOT_PASSWORD: 'rootpassword'