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
- Host: GitHub
- URL: https://github.com/alvarogarcia7/shellcheck-docker
- Owner: alvarogarcia7
- Created: 2018-07-23T09:06:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-23T09:32:58.000Z (over 7 years ago)
- Last Synced: 2025-01-10T22:49:27.287Z (about 1 year ago)
- Topics: docker, make, makefile, shellcheck
- Language: Makefile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```