我可以在S3FS上使用docker卷吗?

时间:2018-07-18 15:36:36

标签: docker docker-compose mount fuse s3fs

我希望在我的容器之间有一个共享目录:ftps3fs。为此,我在自己的docker-compose文件中创建了一个名为s3的卷。

如果我阻止s3fs在我的s3fs容器中运行,则可以在ftp容器中创建文件,这些文件将显示在{{ 1}}。

但是,在运行s3fs时,目录/home/files仍然为空,而我在s3fs中创建文件。

这是我的/ proc / mounts文件的样子:

/home/files

我相信保险丝可能覆盖了我的Docker卷,以前有人遇到过这个问题吗?

docker-compose.yml

ftp

s3fs-Dockerfile

/dev/sda2 /home/files ext4 rw,relatime,data=ordered 0 0
s3fs /home/files fuse.s3fs rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other 0 0

s3fs-entrypoint.sh

version: "3"
services:
  ftp:
    image: app/proftpd:latest
    volumes:
      - s3:/home/files
    ports:
      - 2222:2222

  s3fs:
    image: app/s3fs:latest
    command: start
    env_file:
      - s3fs/aws.env
    volumes:
      - s3:/home/files
    cap_add:
      - SYS_ADMIN
    devices:
      - "/dev/fuse"
    environment:
      ENVIRONMENT: "dev"

volumes:
  s3:

ftp-Dockerfile

FROM ubuntu:16.04

RUN apt-get update -qq
RUN apt-get install -y \
            software-properties-common
RUN apt-get update -qq
RUN apt-get install -y \
            automake \
            autotools-dev \
            fuse \
            g++ \
            git \
            libcurl4-openssl-dev \
            libfuse-dev \
            libssl-dev \
            libxml2-dev \
            make \
            pkg-config \
            curl

RUN curl -L https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.84.tar.gz | tar zxv -C /usr/src
RUN cd /usr/src/s3fs-fuse-1.84 && ./autogen.sh && ./configure --prefix=/usr --with-openssl && make && make install

COPY entrypoint.sh /opt/s3fs/bin/entrypoint.sh

RUN mkdir -p /home/files

WORKDIR /opt/s3fs/bin

ENTRYPOINT ["/bin/sh", "./entrypoint.sh"]

1 个答案:

答案 0 :(得分:0)

您可以通过以下方式将s3安装在Docker容器中

1。添加到Dockerfile

RUN apt-get install -y fuse s3fs
RUN mkdir /root/.aws
RUN touch /root/.aws/.passwd-s3fs && chmod 600 /root/.aws/.passwd-s3fs
COPY entrypoint.sh ./
RUN chmod 700 entrypoint.sh
ENTRYPOINT entrypoint.sh

2。使用下一个脚本创建entrypoint.sh

#!/bin/sh
echo "$AWS_CREDS" > /root/.aws/.passwd-s3fs
echo "$BUCKET_NAME /srv/files fuse.s3fs _netdev,allow_other,passwd_file=/root/.aws/.passwd-s3fs 0 0" > /etc/fstab
mount -a
<your old CMD or ENTRYPOINT>

3。在docker-compose.yml中添加下一个

<your-container-name>:
   image: ...
   build: ...
   environment:
      - AWS_ID="AKI..."
      - AWS_KEY="omIE..."
      - AWS_CREDS=AKI...:2uMZ...
      - BUCKET_NAME=<YOUR backed name>
   devices:
      - "/dev/fuse"
   cap_add:
      - SYS_ADMIN
   security_opt:
      - seccomp:unconfined