Docker for Mac和mkdir权限

问题描述 投票:0回答:1

使用docker for mac app。昨天刚装好了。终于得到了应用程序。但是在安装postgis之前我无法运行迁移。所以我放弃了postgis:11-alpine图像的官方postgres dockerhub图像。但是当docker尝试使用mkdir获取pg_data卷时,我继续获得权限被拒绝的问题。

Dockerfile:

        version: '3'

    # Containers we are going to run
    services:
      # Our Phoenix container
      phoenix:
        # The build parameters for this container.
        build:
          # Here we define that it should build from the current directory
          context: .
        environment:
          # Variables to connect to our Postgres server
          PGUSER: postgres
          PGPASSWORD: postgres
          PGDATABASE: gametime_dev
          PGPORT: 5432
          # Hostname of our Postgres container
          PGHOST: db
        ports:
          # Mapping the port to make the Phoenix app accessible outside of the container
          - "4000:4000"
        depends_on:
          # The db container needs to be started before we start this container
          - db
          - redis

      redis:
        image: "redis:alpine"
        ports:
          - "6379:6379"
        sysctls:
          net.core.somaxconn: 1024

      db:
        # We use the predefined Postgres image
        image: mdillon/postgis:11-alpine
        environment:
          # Set user/password for Postgres
          POSTGRES_USER: postgres
          POSTGRES_PASSWORD: postgres
          # Set a path where Postgres should store the data
          PGDATA: /var/lib/postgresql/data/pgdata
        restart: always
        volumes:
          - pgdata:/usr/local/var/postgres_data
    # Define the volumes
    volumes:
      pgdata:

我得到的错误:

db_1       | mkdir: can't create directory '/var/lib/postgresql/data/pgdata': Permission denied

使用postgres(官方)图像时不会发生这种情况。我用Google搜索了高低。我确实读过一些关于Docker for Mac的命令,它在VM上创建的容器上运行命令,作为当前用户的localhost用户而不是root用户。但这对我来说没有意义 - 如果是这样的话我该如何解决这个问题呢?

[额外注意事项:] - 我确实尝试过:z和:Z - 仍然得到与上面完全相同的错误。

感谢时间 - 提前。

docker docker-compose dockerfile docker-for-mac postgis-installation
1个回答
2
投票

您的db服务的环境变量表明PGDATA位于/var/lib/postgresql/data/pgdata中,但您在/usr/local/var/postgres_data的容器中安装了一个pgdata卷。

我的猜测是,当postgres开始时,它正在查看env vars并期待/var/lib/postgresql/data/pgdata中的dir。由于它可能不存在,它试图将其创建为postgres用户,而无权执行此操作。

对两个变量使用相同的路径,我很确定它会修复错误。

© www.soinside.com 2019 - 2024. All rights reserved.