Go to file
Sambo Chea 002b10a97b Fixed chmod for entrypoint 2021-03-26 20:59:45 +07:00
.github/workflows Updated file action 2021-03-26 20:58:29 +07:00
.gitignore Just add example action but not complete yet 2021-03-26 11:54:15 +07:00
action.yml Updated the branding 2021-03-26 20:39:38 +07:00
Dockerfile Fixed chmod for entrypoint 2021-03-26 20:59:45 +07:00
entrypoint.sh Add entrypoint for docker execute in action 2021-03-26 20:32:50 +07:00
LICENSE Just add example action but not complete yet 2021-03-26 11:54:15 +07:00
README.md Format readme 2021-03-26 20:58:05 +07:00

Starter Docker - GitHub Actions

  • Run actions with docker (latest version)
  • Quick and easy to use
  • Support custom registry
  • Support custom shell and commands

Usage

- name: Starter Docker
  uses: CUBETIQ/starter-docker-actions@v0.2

Example Action

name: CI

on:
  push:
    branches: [master]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: cubetiq/starter-docker-actions@v0.2
      - name: Starter Docker Test
        run: |
          docker images
          docker ps
          docker --version          

Contributors