Docker容器卷未在GitHub Actions中挂载

时间:2019-11-22 15:51:12

标签: github github-actions

以下是我的操作文件。

name: ZAP
on: push
jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: owasp/zap2docker-stable
      options: --user root
      volumes:
        - /__w/actions-test-repo/actions-test-repo:/zap/wrk/
    steps:
      - uses: actions/checkout@v1
      - name: view file
        run: pwd
      - name: run zap
        if: always()
        run: zap-baseline.py -t https://www.example.com -g gen.conf -r testreport.html
      - name: view file
        if: always()
        run: pwd

我想将目录/ zap / wrk /绑定到本地目录。但是,当容器启动时,它不会挂载该卷。我得到了当前的工作目录,并将其安装到docker容器。这是正确的方法吗?

enter image description here

结果链接:https://github.com/sshniro/actions-test-repo/commit/08c0257d92b772a1d33c0b68cb8af99afdef9130/checks?check_suite_id=324032091

1 个答案:

答案 0 :(得分:3)

在此论坛中也发现了类似的问题。 https://github.community/t5/GitHub-Actions/Container-volumes-key-not-mounting-volume/td-p/34798

解决方法是使用options参数。

name: ZAP
on: push
jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: owasp/zap2docker-stable
      options: -v /__w/actions-test-repo/actions-test-repo:/zap/wrk/:rw
    steps:
      - uses: actions/checkout@v2
      - name: run zap
        if: always()
        run: zap-baseline.py -t https://www.example.com -g gen.conf -w testreport.md