https://github.com/codecrafters-io/docker-explorer
A test program to help with the Docker challenge
https://github.com/codecrafters-io/docker-explorer
Last synced: 3 months ago
JSON representation
A test program to help with the Docker challenge
- Host: GitHub
- URL: https://github.com/codecrafters-io/docker-explorer
- Owner: codecrafters-io
- Created: 2019-12-15T10:03:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-16T17:42:05.000Z (over 5 years ago)
- Last Synced: 2025-06-22T01:50:18.739Z (7 months ago)
- Language: Go
- Homepage:
- Size: 5.07 MB
- Stars: 13
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a test program for the Docker challenge.
You'll need to install it into `/usr/local/bin/docker-explorer` to use it for the
Docker challenge.
# Installation
If you're on Mac:
```
sudo curl -Lo /usr/local/bin/docker-explorer https://github.com/codecrafters-io/docker-explorer/releases/download/v17/v17_darwin_amd64
sudo chmod +x /usr/local/bin/docker-explorer
```
If you're on linux:
```
sudo curl -Lo /usr/local/bin/docker-explorer https://github.com/codecrafters-io/docker-explorer/releases/download/v17/v17_linux_amd64
sudo chmod +x /usr/local/bin/docker-explorer
```
To verify that the installation worked, run:
``` sh
docker-explorer echo hey
```
You should see `hey` printed back.