Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vimeo/docker-skyline
Launch Etsy's Skyline (part of Kale) using Docker
https://github.com/vimeo/docker-skyline
Last synced: 8 days ago
JSON representation
Launch Etsy's Skyline (part of Kale) using Docker
- Host: GitHub
- URL: https://github.com/vimeo/docker-skyline
- Owner: vimeo
- Fork: true (carver/docker-skyline)
- Created: 2014-10-02T22:35:50.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-01T18:51:32.000Z (almost 10 years ago)
- Last Synced: 2024-08-02T06:25:47.100Z (3 months ago)
- Language: Python
- Size: 124 KB
- Stars: 5
- Watchers: 10
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
When running this container, you will be able to load the skyline webpage at port 1500.
NOTE: I haven't yet confirmed that horizon and the analyzer are working, other than that their logs don't complain about anything. (except about starving for data)
Build and run with:
# Install Docker, using instructions at http://docker.io/gettingstarted/
# download Docker build files
git clone https://github.com/vimeo/docker-skyline
cd docker-skyline
# build
docker build -t="vimeo/skyline" .
# run
docker run -d -p 1500:1500 -p 2024:2024 vimeo/skyline
# behold
curl localhost:1500If you want to show the log output at the terminal when running, omit the -d, like:
docker run -p 1500:1500 -p 2024:2024 vimeo/skyline