File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -235,6 +235,23 @@ See Flexbox Grid Mixins documentation: [http://thingsym.github.io/flexbox-grid-m
235
235
5 . run ``` $ npm run serve ```
236
236
6 . Access URL http://localhost:3000
237
237
238
+ ## Docker Development Environment
239
+
240
+ ### Build and launch website
241
+
242
+ ```
243
+ docker-compose run --rm node npm install
244
+ docker-compose run --rm -p 3000:3000 node npm run serve
245
+ ```
246
+
247
+ Access to URL http://localhost:3000
248
+
249
+ ### listing tasks
250
+
251
+ ```
252
+ docker-compose run --rm node npm run
253
+ ```
254
+
238
255
## Contribution
239
256
240
257
### Patches and Bug Fixes
Original file line number Diff line number Diff line change
1
+ version : ' 3'
2
+
3
+ services :
4
+ node :
5
+ image : node:14-buster
6
+ container_name : flexbox-grid-mixins
7
+ volumes :
8
+ - .:/flexbox-grid-mixins
9
+ working_dir : /flexbox-grid-mixins
10
+
You can’t perform that action at this time.
0 commit comments