forked from dart-lang/site-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
39 lines (38 loc) · 1.1 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
38
39
version: "3"
services:
site:
image: dart-dev:stable
build:
context: .
target: dev
command: ["make", "serve"]
env_file: .env
environment:
- JEKYLL_ENV=development
- JEKYLL_SITE_HOST=0.0.0.0
- JEKYLL_SITE_PORT=4000
- NODE_ENV=development
ports:
- "4000:4000"
- "35729:35729"
- "5500:5500"
volumes:
- ./_config_dev.yml:/app/_config_dev.yml
- ./_config_test.yml:/app/_config_test.yml
- ./_config.yml:/app/_config.yml
- ./_site:/app/_site
- ./.firebaserc:/app/.firebaserc
- ./analysis_options.yaml:/app/analysis_options.yaml
- ./build.excerpt.yaml:/app/build.excerpt.yaml
- ./diagrams:/app/diagrams
- ./examples:/app/examples
- ./firebase.json:/app/firebase.json
- ./Gemfile:/app/Gemfile
- ./Gemfile.lock:/app/Gemfile.lock
- ./Makefile:/app/Makefile
- ./package-lock.json:/app/package-lock.json
- ./package.json:/app/package.json
- ./pubspec.yaml:/app/pubspec.yaml
- ./site-shared:/app/site-shared
- ./src:/app/src
- ./tool:/app/tool