mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-05-07 11:16:31 +00:00
14 lines
279 B
Docker
14 lines
279 B
Docker
# 使用PostgreSQL官方镜像
|
|
FROM postgres:latest
|
|
|
|
# 设置环境变量
|
|
ENV POSTGRES_USER=postgres
|
|
ENV POSTGRES_PASSWORD=123456
|
|
ENV POSTGRES_DB=mydb
|
|
|
|
# 开放5432端口
|
|
EXPOSE 5432
|
|
|
|
# 健康检查
|
|
HEALTHCHECK --interval=30s --timeout=3s \
|
|
CMD pg_isready -U postgres || exit 1 |