mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-05 10:29:56 +08:00
37 lines
900 B
YAML
37 lines
900 B
YAML
#
|
||
# 开源代码,仅供学习和交流研究使用,商用请联系三丙
|
||
# 微信:mohan_88888
|
||
# 抖音:程序员三丙
|
||
# 付费课程知识星球:https://t.zsxq.com/aKtXo
|
||
#
|
||
|
||
|
||
volumes:
|
||
postgresql_data: {}
|
||
|
||
networks:
|
||
sanbing-network:
|
||
driver: bridge
|
||
name: sanbing-network
|
||
ipam:
|
||
config:
|
||
- subnet: 10.10.0.0/24
|
||
|
||
services:
|
||
postgres:
|
||
container_name: postgresql
|
||
image: registry.cn-hangzhou.aliyuncs.com/sanbing/postgresql:17
|
||
restart: always
|
||
networks:
|
||
- sanbing-network
|
||
ports:
|
||
- "5432:5432"
|
||
environment:
|
||
- 'POSTGRES_DB=jcpp'
|
||
- 'POSTGRES_PASSWORD=postgres'
|
||
- 'POSTGRESQL_MAX_CONNECTIONS=1000'
|
||
- 'POSTGRESQL_DEFAULT_TRANSACTION_ISOLATION=read committed'
|
||
- 'TZ=Asia/Shanghai'
|
||
volumes:
|
||
- postgresql_data:/bitnami/postgresql
|
||
- ./schema/schema-postgres.sql:/docker-entrypoint-initdb.d/init.sql |