init code

This commit is contained in:
fish
2025-10-03 16:39:24 +08:00
parent d3008ab9f5
commit 1e9cdda192
61 changed files with 3196 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
services:
pgadmin:
image: dpage/pgadmin4:9.5.0
container_name: user_pgadmin
ports:
- "20001:80"
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_EMAIL}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_PASSWORD}
TZ: ${TZ}
volumes:
- ./shared_data/data4pgadmin:/var/lib/pgadmin
networks:
- user-network
depends_on:
- postgres # 依赖数据库服务(非必须,仅控制启动顺序)