docker-compose.yml
postgres:image: postgresrestart: alwaysports:- "5432:5432"environment:- POSTGRES_PASSWORD=jiang155.volumes:- ./postgres/data:/var/lib/postgresql/data
语法
# 创建数据库create database nextcloud;# 创建用户CREATE USER nextcloud WITH PASSWORD 'nextcloud';# 赋权GRANT ALL PRIVILEGES ON DATABASE nextcloud TO nextcloud;
