Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pbrisbin/docker-halcyon
Test Halcyon-based Heroku deploys locally with Docker
https://github.com/pbrisbin/docker-halcyon
Last synced: about 2 months ago
JSON representation
Test Halcyon-based Heroku deploys locally with Docker
- Host: GitHub
- URL: https://github.com/pbrisbin/docker-halcyon
- Owner: pbrisbin
- Created: 2015-02-19T20:13:13.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-19T20:13:15.000Z (almost 10 years ago)
- Last Synced: 2024-10-09T09:45:30.615Z (3 months ago)
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Halcyon
Ubuntu 14.04 with Halcyon installed. Useful for pre-building or testing
Halcyon-based projects eventually deployed to Heroku.- https://halcyon.sh
- https://haskellonheroku.com## Installation
From within this directory:
- Build the image
```
docker build -t $USER/halcyon .
```Feel free to use any tag you like, adjust Usage accordingly.
## Usage
Within a Halcyon-based project directory:
- Create a file holding private storage variables
**./docker-env**
```
HALCYON_AWS_ACCESS_KEY_ID=...
HALCYON_AWS_SECRET_ACCESS_KEY=...
HALCYON_S3_BUCKET=...
```- Build with Halcyon in the image
```
docker run --env-file docker-env -v $PWD:/source $USER/halcyon build
```