Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpadilla/ember-fastboot-docker
Dockerized Node.js server for running Ember FastBoot apps
https://github.com/jpadilla/ember-fastboot-docker
docker ember
Last synced: 3 months ago
JSON representation
Dockerized Node.js server for running Ember FastBoot apps
- Host: GitHub
- URL: https://github.com/jpadilla/ember-fastboot-docker
- Owner: jpadilla
- License: mit
- Created: 2016-01-28T12:48:54.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-04T15:41:25.000Z (almost 9 years ago)
- Last Synced: 2024-10-12T07:26:21.305Z (3 months ago)
- Topics: docker, ember
- Language: JavaScript
- Size: 4.88 KB
- Stars: 42
- Watchers: 6
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ember-fastboot-docker
Dockerized Node.js server for running Ember FastBoot apps. Based on [Ember FastBoot for AWS Elastic Beanstalk](https://github.com/tomdale/ember-fastboot-elastic-beanstalk) by [@tomdale](https://github.com/tomdale).
## Usage
```
$ docker run \
--rm -it \
-p 8080:3000 \
-v $(pwd)/fastboot-dist:/src/fastboot-dist \
jpadilla/ember-fastboot-server
```#### Environment variables
For basic auth support specify `FASTBOOT_USERNAME` and `FASTBOOT_PASSWORD` environment variables when running.
Default port is `3000`. To override specify a different `PORT` environment variable when running.