File tree Expand file tree Collapse file tree 4 files changed +32
-0
lines changed
Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ services:
1818 context : ./services/composer
1919 volumes :
2020 - ./:/app
21+ node :
22+ build :
23+ context : ./services/node
24+ volumes_from :
25+ - workspace
2126volumes :
2227 php-fpm :
2328 driver : " local"
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " docker-webapp" ,
3+ "version" : " 0.0.1" ,
4+ "main" : " public/index.php" ,
5+ "repository" :
" [email protected] :jpcaparas/docker-webapp.git" ,
6+ "license" : " MIT" ,
7+ "dependencies" : {
8+ "whatwg-fetch" : " ^2.0.3"
9+ }
10+ }
Original file line number Diff line number Diff line change 1+ FROM node:7.10
2+
3+ # mark volume/s as externally mounted
4+ VOLUME ["/var/www" ]
5+
6+ # starting point
7+ WORKDIR /var/www
8+
9+ # comes preinstalled with yarn
10+ CMD ["node" ]
Original file line number Diff line number Diff line change 1+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+ # yarn lockfile v1
3+
4+
5+ whatwg-fetch@^2.0.3 :
6+ version "2.0.3"
7+ resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
You can’t perform that action at this time.
0 commit comments