Sorry. It appears that the Apache mailer strips attachments for some
reason. This is the inline version of the file you should name as
docker-compose.yml prior to running “docker-compose up” to launch the container.
This will successfully launch a container containing the aria-tosca
website and jekyll, and then execute jekyll to serve up the site on
localhost:4000
—Tom
docker-compose.yml
Gabriel:Docker tnadeau$ more docker-compose.yml
version: "3"
services:
jekyll:
#image: jekyll:16.04
image: jekyll/jekyll
hostname: jekyll
ports:
- "4000:4000"
stdin_open: true
tty: true
command: sh -c "cd /tmp && git clone
https://github.com/vishwanathj/incubator-ariatosca-website.git
/tmp/incubator-ariatosca-website && cd /tmp/incubator-ariatosca-website &&
touch -f /tmp/incubator-ariatosca-website/.jekyll-metadata && chmod 777
/tmp/incubator-ariatosca-website/.jekyll-metadata && cd
/tmp/incubator-ariatosca-website/ && jekyll serve --incremental"