docker.io/rostislavdugin/postgresus:v1.23.0 linux/amd64

docker.io/rostislavdugin/postgresus:v1.23.0 - 国内下载镜像源 浏览次数:14
源镜像 docker.io/rostislavdugin/postgresus:v1.23.0
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0
镜像ID sha256:52b28113dfc2aade1688690e70d136472531f811c09df04b86d9f5c2e09764fe
镜像TAG v1.23.0
大小 589.84MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /app/start.sh
工作目录 /app
OS/平台 linux/amd64
浏览量 14 次
贡献者 95******6@qq.com
镜像创建 2025-10-31T14:23:20.540729157Z
同步时间 2025-11-04 00:22
更新时间 2025-11-04 19:06
开放端口
4005/tcp
目录挂载
/postgresus-data
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin APP_VERSION=1.23.0 ENV_MODE=production
镜像标签
1.23.0: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0  docker.io/rostislavdugin/postgresus:v1.23.0

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0  docker.io/rostislavdugin/postgresus:v1.23.0

Shell快速替换命令

sed -i 's#rostislavdugin/postgresus:v1.23.0#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0  docker.io/rostislavdugin/postgresus:v1.23.0'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0  docker.io/rostislavdugin/postgresus:v1.23.0'

镜像构建历史


# 2025-10-31 22:23:20  0.00B 设置默认要执行的命令
CMD []
                        
# 2025-10-31 22:23:20  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/app/start.sh"]
                        
# 2025-10-31 22:23:20  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/postgresus-data]
                        
# 2025-10-31 22:23:20  0.00B 声明容器运行时监听的端口
EXPOSE [4005/tcp]
                        
# 2025-10-31 22:23:20  1.92KB 执行命令并创建新的镜像层
RUN |1 APP_VERSION=1.23.0 /bin/sh -c chmod +x /app/start.sh # buildkit
                        
# 2025-10-31 22:23:20  1.92KB 复制新文件或目录到容器中
COPY <<EOF /app/start.sh # buildkit
                        
# 2025-10-31 22:23:20  477.00B 执行命令并创建新的镜像层
RUN |1 APP_VERSION=1.23.0 /bin/sh -c if [ ! -f /app/.env ]; then   if [ -f /app/.env.production.example ]; then   cp /app/.env.production.example /app/.env;   fi;   fi # buildkit
                        
# 2025-10-31 22:23:20  1.46KB 复制新文件或目录到容器中
COPY backend/.env* /app/ # buildkit
                        
# 2025-10-31 22:23:20  1.30MB 复制新文件或目录到容器中
COPY /app/ui/build ./ui/build # buildkit
                        
# 2025-10-31 22:23:20  18.71KB 复制新文件或目录到容器中
COPY backend/migrations ./migrations # buildkit
                        
# 2025-10-31 22:23:20  48.76MB 复制新文件或目录到容器中
COPY /app/main . # buildkit
                        
# 2025-10-31 22:23:20  54.33MB 复制新文件或目录到容器中
COPY /usr/local/bin/goose /usr/local/bin/goose # buildkit
                        
# 2025-10-31 22:20:02  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2025-10-31 22:20:02  0.00B 执行命令并创建新的镜像层
RUN |1 APP_VERSION=1.23.0 /bin/sh -c useradd -m -s /bin/bash postgres || true &&   mkdir -p /postgresus-data/pgdata &&   chown -R postgres:postgres /postgresus-data/pgdata # buildkit
                        
# 2025-10-31 22:20:02  410.61MB 执行命令并创建新的镜像层
RUN |1 APP_VERSION=1.23.0 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends   wget ca-certificates gnupg lsb-release sudo gosu &&   wget -qO- https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - &&   echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main"   > /etc/apt/sources.list.d/pgdg.list &&   apt-get update &&   apt-get install -y --no-install-recommends   postgresql-17 postgresql-18 postgresql-client-13 postgresql-client-14 postgresql-client-15   postgresql-client-16 postgresql-client-17 postgresql-client-18 &&   rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2025-10-31 22:20:02  0.00B 设置环境变量 ENV_MODE
ENV ENV_MODE=production
                        
# 2025-10-31 22:20:02  0.00B 设置环境变量 APP_VERSION
ENV APP_VERSION=1.23.0
                        
# 2025-10-31 22:20:02  0.00B 添加元数据标签
LABEL org.opencontainers.image.version=1.23.0
                        
# 2025-10-31 22:20:02  0.00B 定义构建参数
ARG APP_VERSION=1.23.0
                        
# 2025-10-20 08:00:00  74.81MB 
# debian.sh --arch 'amd64' out/ 'bookworm' '@1760918400'
                        
                    

镜像信息

{
    "Id": "sha256:52b28113dfc2aade1688690e70d136472531f811c09df04b86d9f5c2e09764fe",
    "RepoTags": [
        "rostislavdugin/postgresus:v1.23.0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus:v1.23.0"
    ],
    "RepoDigests": [
        "rostislavdugin/postgresus@sha256:7fabcd94c70631615b921645430e33e85bbd76735a6d9ca8e3ede180698a13ca",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rostislavdugin/postgresus@sha256:e04589f30e65ee69941fbc049c09011d354ad562df6c7b6357d809bebbacd1c8"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-10-31T14:23:20.540729157Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "4005/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "APP_VERSION=1.23.0",
            "ENV_MODE=production"
        ],
        "Cmd": null,
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": {
            "/postgresus-data": {}
        },
        "WorkingDir": "/app",
        "Entrypoint": [
            "/app/start.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.version": "1.23.0"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 589837951,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/6edef61470edad1e404dcfa5b81bea4af99119d5794fc84e87244404b5edc208/diff:/var/lib/docker/overlay2/fef6b7eaae6036776dff05dbcfa8030eb386b469c8a27433d5705ec91b608e5d/diff:/var/lib/docker/overlay2/05984679ca35011dc1a8f741d6b01dcc2ba45e0eaa02d6cb6e4c28c23bb5fd3e/diff:/var/lib/docker/overlay2/a6c34a41d036e30fe32ca6689a85d9d4708339a1370927fa18e2e15a9d5eddf6/diff:/var/lib/docker/overlay2/e2e10936a4e5a8b992fa628fae9b53e2751a03c65a676135814ccfe7acee46c5/diff:/var/lib/docker/overlay2/816b610ab2b0195baa9d0c27133962dfcc66f35de3acd6202c2c59690924e84f/diff:/var/lib/docker/overlay2/b7fa51381bce2c61e85b62c3f7c56ef1c8bd07a04560c613130a7c4988ae02a7/diff:/var/lib/docker/overlay2/c0a0f529b5eb3845a817b3764aa047b9154b5189154b2f40f438e4f8466e157f/diff:/var/lib/docker/overlay2/b5ad9eef04f2176b244d407d2327341a59dda426e227522ef68b50c84a5acc71/diff:/var/lib/docker/overlay2/eca171cc23a658189d0d6c619970a81d0a27a840d6b470ced365d04b3f1af612/diff:/var/lib/docker/overlay2/216a389c763a296dc785d4bf6d5c6252394862a8228e162f75b6dae2b900ebf3/diff",
            "MergedDir": "/var/lib/docker/overlay2/824c7d5e1896d1540ff550b277d0525efdfe0512d0fbf3c520cf38e89c66eb5c/merged",
            "UpperDir": "/var/lib/docker/overlay2/824c7d5e1896d1540ff550b277d0525efdfe0512d0fbf3c520cf38e89c66eb5c/diff",
            "WorkDir": "/var/lib/docker/overlay2/824c7d5e1896d1540ff550b277d0525efdfe0512d0fbf3c520cf38e89c66eb5c/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:d6d0586ce8024205fd00d811876170571638957b5095d7e9dd1d015345c8d069",
            "sha256:001a04ce724d10d089ac3ce21f9e1175d3afad87bd0809a900b25711baff1abe",
            "sha256:9ed4ba20f7a4129c43eef4783ce4e4cd19d87970520c8c96d1148f93d32891b6",
            "sha256:3c935a8562563e3be2d2d873e4b5b3b3f9976259ca106183f9ae9c53d63ad7d5",
            "sha256:20b4cdb281672027767b2c22ebfc91e608dbf1c2471ea6b97228648d7990ace3",
            "sha256:3f97ea11002f554175a2de29c407e19248c394baeafb0b20b82968326e0c60ab",
            "sha256:5527555e3a697e20b253e6c9af3b63797a04582385e7343fde4acde723d88d37",
            "sha256:34d66630184b8f29b49a1a36b4fc48035ac938e9ddca824f27b90d48df37afc7",
            "sha256:7f4328e62239bfe4f355ee666a806c3d74409aac4ef947dae1950413ac900b67",
            "sha256:27c84c205e98c384a12aa5e03c531e6db517c72453205e92567111c844a290e1",
            "sha256:4c896919adf819e92973b43f14020af634f93164fb695fea0d586e2aa02f0a1a",
            "sha256:230b66d12d6e6ddb82b9990b9ad49c30810c240efbf2e5d26da03cb48dd3bf4c"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-11-04T00:22:18.2730141+08:00"
    }
}

更多版本

docker.io/rostislavdugin/postgresus:v1.23.0

linux/amd64 docker.io589.84MB2025-11-04 00:22
13

docker.io/rostislavdugin/postgresus:latest

linux/arm64 docker.io614.99MB2025-11-04 00:26
14

docker.io/rostislavdugin/postgresus:v1.23.0

linux/arm64 docker.io614.99MB2025-11-04 00:28
14