Skip to content

Commit 9b2627f

Browse files
committed
chore: add Docker Development Environment
1 parent f1d5219 commit 9b2627f

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,23 @@ See Flexbox Grid Mixins documentation: [http://thingsym.github.io/flexbox-grid-m
235235
5. run ```$ npm run serve```
236236
6. Access URL http://localhost:3000
237237

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+
238255
## Contribution
239256

240257
### Patches and Bug Fixes

docker-compose.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+

0 commit comments

Comments
 (0)