mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
846b7f26f7
* add init dockerfile * add dockerfile documentation * gitignore gemfile.lock * improve Dockerfile * add docker-compose file * change readme to use docker-compose * improve readme * Fix readme - Debian != Windows * Small wording improvement * copy contents into dockerfile To be able to run it without a volume (but with `docker-compose up` who would do that :) )
15 lines
311 B
Docker
15 lines
311 B
Docker
# Build:
|
|
# docker build -t ace3mod/jekyll .
|
|
#
|
|
# Run:
|
|
# docker run -p 4000:4000 -it ace3mod/jekyll
|
|
|
|
FROM starefossen/github-pages:latest
|
|
MAINTAINER bux
|
|
|
|
COPY . /usr/src/app
|
|
|
|
VOLUME "/usr/src/app"
|
|
|
|
CMD ["jekyll", "serve", "--future", "--incremental", "--config", "_config_dev.yml", "-H", "0.0.0.0", "-P", "4000"]
|