环境:Ubuntu 20.04
安装 Docker
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add
sudo apt install -y software-properties-common
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt update -y
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
安装特定版本
查询 docker-ce 版本
sudo apt-cache policy docker-ce
安装指定版本
sudo apt install -y docker-ce=5:19.03.15~3-0~ubuntu-focal docker-ce-cli=5:19.03.15~3-0~ubuntu-focal
拉取镜像
官方
docker pull docker.umami.is/umami-software/umami:mysql-latest
国内
docker pull ccr.ccs.tencentyun.com/orilight/umami-mysql:latest
安装 Mariadb
apt install -y mariadb-server
此处省略创建用户和数据库
Docker 安装
docker run -d --name=umami --network=host --restart=always -e HASH_SALT=liveJQ -e DATABASE_TYPE=mysql -e PORT=5220 -e DATABASE_URL=mysql://umami:liveJQ@localhost:3306/umami -e DISABLE_UPDATES=1 ccr.ccs.tencentyun.com/orilight/umami-mysql:latest
评论区