24 lines
449 B
YAML
24 lines
449 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
pgsql:
|
|
image: harbor.colben.cn/general/pgsql:15
|
|
container_name: pgsql
|
|
restart: "on-failure"
|
|
stop_grace_period: 32s
|
|
networks:
|
|
pgsql:
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- type: bind
|
|
source: ./pgsql/db
|
|
target: /var/lib/pgsql/
|
|
- type: bind
|
|
source: ./pgsql/conf.d
|
|
target: /etc/pgsql/conf.d
|
|
- type: bind
|
|
source: ./pgsql/log
|
|
target: /var/log/pgsql
|
|
|