Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 866 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 866 Bytes

action-docker-layer-caching README sample test Release & Test

name: CI

on: push

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - uses: satackey/action-docker-layer-caching@v0.0
      with:
        repotag: test_project_node
        key: docker-compose-node-image-${{ hashFiles('yarn.lock') }}

    - run: docker-compose -f test_project/docker-compose.yml -p test_project build