You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cr...@apache.org on 2020/04/11 22:48:14 UTC

[incubator-superset] branch master updated: docker node_modules in its own volume (#9509)

This is an automated email from the ASF dual-hosted git repository.

craigrueda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new a797465  docker node_modules in its own volume (#9509)
a797465 is described below

commit a797465ae5b1f0064a0620d7511ec9bcffe8c1dc
Author: Octavian <oc...@gmail.com>
AuthorDate: Sun Apr 12 00:47:50 2020 +0200

    docker node_modules in its own volume (#9509)
---
 docker-compose.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/docker-compose.yml b/docker-compose.yml
index 89a7525..f8df1a3 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -29,6 +29,7 @@ x-superset-volumes: &superset-volumes
   - ./docker/pythonpath_dev:/app/pythonpath
   - ./superset:/app/superset
   - ./superset-frontend:/app/superset-frontend
+  - node_modules:/app/superset-frontend/node_modules
   - superset_home:/app/superset_home
 
 version: "3.7"
@@ -85,6 +86,8 @@ services:
 volumes:
   superset_home:
     external: false
+  node_modules:
+    external: false
   db_home:
     external: false
   redis: