An image running openlitespeed/1.7.16-lsphp81 Linux and Spotweb.
You need a separate MySQL / MariaDB server. This can of course be a (linked) docker container but also a dedicated database server.
If you would like to use docker-compose, a short guide can be found below.
This is a ROOTLESS container, the default user ID is 1000.
Tag | Branch |
---|---|
latest |
master(b88765). |
develop |
develop(30b709). |
Mount point | Function |
---|---|
/var/www/vhosts/localhost/cache/ |
Cache of spotweb. |
/usr/local/lsws/logs/ |
All logs from OLS, Spotweb, Cron and Upgrade DB will be placed here. |
There is some middleware here, first of all, we always run the bin/upgrade-db.php in startup, this menas that the database will be populated for the first time.
Later, to set up the settings, you can provide the SPOTWEB_INSTALL_KEY
to enable the install.php script, follow the steps:
- Set
SPOTWEB_INSTALL_KEY
env variable with your secret random key - Deploy the docker compose and go to /install.php?key=YOUR_INSTALL_KEY_HERE
- Enjoy your new installation without change your docker-compose file
Variable | Function |
---|---|
TIMEZONE |
The timezone the server is running in. |
SPOTWEB_INSTALL_KEY |
The install key for first time install. |
SPOTWEB_DB_ENGINE |
Just keep in pdo_mysql. |
SPOTWEB_MYSQL_HOST |
The database hostname / IP. |
SPOTWEB_MYSQL_DATABASE |
The database used for spotweb. |
SPOTWEB_MYSQL_USER |
The database server username. |
SPOTWEB_MYSQL_PASSWORD |
The database server password. |
The container will try to auto-update the database when a newer version is released.
The best way to use this container is with a docker-compose.yml
file, here is a basic example:
version: '3'
services:
mysql:
# check https://mariadb.org/mariadb/all-releases/
image: mariadb:10.9
command: [ 'mysqld', '--character-set-server=latin1', '--collation-server=latin1_swedish_ci', '--max_allowed_packet=1024M', '--innodb_file_per_table=1', '--innodb_buffer_pool_size=1G' ]
user: "1000:1000"
volumes:
- ${MYSQL_FOLDER}:/var/lib/mysql:delegated
environment:
TZ: ${TIMEZONE}
MARIADB_AUTO_UPGRADE: '1'
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_USER: ${MYSQL_USER}
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
restart: always
litespeed:
image: bakasura/spotweb:latest
user: "1000:1000"
env_file:
- .env
volumes:
- ${CACHE_FOLDER}:/var/www/vhosts/localhost/cache/
- ${LOGS_FOLDER}:/usr/local/lsws/logs/
ports:
- "8980:80"
restart: always
depends_on:
- mysql
environment:
TZ: ${TIMEZONE}
SPOTWEB_INSTALL_KEY: ${SPOTWEB_INSTALL_KEY}
SPOTWEB_DB_ENGINE: pdo_mysql
SPOTWEB_MYSQL_HOST: mysql
SPOTWEB_MYSQL_DATABASE: ${MYSQL_DATABASE}
SPOTWEB_MYSQL_USER: ${MYSQL_USER}
SPOTWEB_MYSQL_PASSWORD: ${MYSQL_PASSWORD}
# Optinal
phpmyadmin:
image: bitnami/phpmyadmin:latest
ports:
- "8981:8080"
depends_on:
- mysql
environment:
DATABASE_HOST: mysql
restart: always