-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
38 lines (36 loc) · 1.16 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '3'
services:
jekyll:
container_name: training-material
image: vibbioinfocore/training-material:clean
volumes:
- ./404.md:/site/404.md
- ./about.md:/site/about.md
- ./app.json:/site/app.json
- ./assets:/site/assets
- ./badges:/site/badges
- ./bin:/site/bin
- ./_config.yml:/site/_config.yml
- ./CONTRIBUTORS.yaml:/site/CONTRIBUTORS.yaml
- ./courses:/site/courses
- ./environment.yml:/site/environment.yml
- ./faq.md:/site/faq.md
- ./favicon.ico:/site/favicon.ico
- ./feed.xml:/site/feed.xml
- ./galaxy_instances.yaml:/site/galaxy-instances.yaml
- ./Gemfile:/site/Gemfile
- ./hall-of-fame.md:/site/hall-of-fame.md
- ./_includes:/site/_includes
- ./index.md:/site/index.md
- ./_layouts:/site/_layouts
- ./.nojekyll:/site/.nojekyll
- ./package.json:/site/package.json
- ./package-lock.json:/site/package-lock.json
- ./_plugins:/site/_plugins
- ./Procfile:/site/Procfile
- ./search:/site/search
- ./shared:/site/shared
- ./snippets:/site/snippets
- ./topics:/site/topics
ports:
- '8080:8080'