gateway 运行文件依赖pem文件

verification里面需要根证书。不然没办法访问https 注意注意! apt-get install ca-certificates

PGSQL第一次运行注意事项

PGSQL docker 运行参数:

docker run -it -d --name prod-postgres -e POSTGRES_PASSWORD=wothing --net=prod postgres:9.5.1

建库

CREATE DATABASE wothing OWNER postgres;

引用extension

CREATE EXTENSION "pgcrypto";