An open API service indexing awesome lists of open source software.

https://github.com/alvarogarcia7/shellcheck-docker

A basic installation for shellcheck using docker
https://github.com/alvarogarcia7/shellcheck-docker

docker make makefile shellcheck

Last synced: about 1 year ago
JSON representation

A basic installation for shellcheck using docker

Awesome Lists containing this project

README

          

# Shellcheck using Docker

## (Customizable) Install

```
make build
```

## (Standard) Install

Taken from [here](https://github.com/koalaman/shellcheck#installing)

```
docker pull koalaman/shellcheck:stable # Or :v0.4.7 for that version, or :latest for daily builds
docker run -v "$PWD:/mnt" koalaman/shellcheck myscript
```

## Running

```
# Copy the file to the current directory
make run FILE=./shell.sh
```