forked from vuestorefront/vue-storefront-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
30 lines (30 loc) · 943 Bytes
/
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
version: '2.0'
services:
app:
# image: divante/vue-storefront:latest
build:
context: .
dockerfile: docker/vue-storefront/Dockerfile
env_file: docker/vue-storefront/default.env
environment:
VS_ENV: dev
network_mode: host
volumes:
- './babel.config.js:/var/www/babel.config.js'
- './config:/var/www/config'
- './core:/var/www/core'
- './ecosystem.json:/var/www/ecosystem.json'
- './.eslintignore:/var/www/.eslintignore'
- './.eslintrc.js:/var/www/.eslintrc.js'
- './lerna.json:/var/www/lerna.json'
- './tsconfig.json:/var/www/tsconfig.json'
- './tsconfig-build.json:/var/www/tsconfig-build.json'
- './shims.d.ts:/var/www/shims.d.ts'
- './package.json:/var/www/package.json'
- './src:/var/www/src'
- './var:/var/www/var'
- './packages:/var/www/packages'
tmpfs:
- /var/www/dist
ports:
- '3000:3000'