Commit 1a178eb2 authored by 王进波's avatar 王进波

udpate

parent 942451e2
......@@ -302,3 +302,16 @@ technosoft2000/calibre-web
docker start calibre-web
```
### WordPress
```shell
sudo docker run \
--name wordpress \
--restart always \
-p 808:80 \
-e WORDPRESS_DB_HOST='192.168.12.38' \
-e WORDPRESS_DB_USER='root' \
-e WORDPRESS_DB_PASSWORD='000000' \
-d wordpress
```
......@@ -176,3 +176,20 @@ ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的
4 rows in set (0.00 sec)
```
### Arch Linux 添加未授信gpg密钥
使用yaourt从 AUR 源码包编译时遇到未知gpg密钥,不允许安装的错误,需要手动将gpg密钥添加到本地授信密钥中。如果你本地已有 gpg密钥对,直接将报错中提示的不可信密钥添加到用户的个人密钥中即可,如下:
```
gpg --recv-keys 5CC908FDB71E12C2
```
> --recv-keys key IDs: Import the keys with the given key IDs from a keyserver.
如果当前用户还没有创建gpg密钥数据库,则手动创建如下:
```
gpg --full-gen-key
```
> -full-gen-key: Generate a new key pair.
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment