Chevereto 4.0 付费版安装

一、安装装备

apt install make unzip curl git
git clone https://github.com/chevereto/docker.git


二、构建容器映像 主机名创建example 命名空间mywebsite.com

git clone https://github.com/chevereto/docker.git
cd docker
make install-docker
make cron
make image 输入许可证密钥
make namespace NAMESPACE=imghost HOSTNAME=mywebsite.com 

生成4个版本映像

  • chevereto:latest
  • chevereto:4
  • chevereto:4.0
  • chevereto:4.0.9

三、运行 chevereto

make spawn NAMESPACE=imghost

Pure Docker方式

docker run -d \
  --name chevereto \
  -p 80:80 \
  -e CHEVERETO_DB_HOST=database \
  -e CHEVERETO_DB_USER=chevereto \
  -e CHEVERETO_DB_PASS=user_database_password \
  -e CHEVERETO_DB_PORT=3306 \
  -e CHEVERETO_DB_NAME=chevereto \
  -e CHEVERETO_ASSET_STORAGE_TYPE=local \
  -e CHEVERETO_ASSET_STORAGE_URL=/images/_assets/ \
  -e CHEVERETO_ASSET_STORAGE_BUCKET=/var/www/html/images/_assets/ \
  -v /var/www/html/images/ \
  chevereto:latest