Merge pull request #2501 from lbssousa/workspace-vue-cli-ports
Added option to map vue-cli ports from workspace container
This commit is contained in:
commit
93f137ce12
|
@ -560,8 +560,14 @@ composer update
|
||||||
```bash
|
```bash
|
||||||
phpunit
|
phpunit
|
||||||
```
|
```
|
||||||
|
```
|
||||||
|
vue serve
|
||||||
|
```
|
||||||
|
(browse the results at `http://localhost:[WORKSPACE_VUE_CLI_SERVE_HOST_PORT]`)
|
||||||
|
```
|
||||||
|
vue ui
|
||||||
|
```
|
||||||
|
(browse the results at `http://localhost:[WORKSPACE_VUE_CLI_UI_HOST_PORT]`)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1890,7 +1896,11 @@ To install NPM VUE CLI in the Workspace container
|
||||||
|
|
||||||
2 - Search for the `WORKSPACE_INSTALL_NPM_VUE_CLI` argument under the Workspace Container and set it to `true`
|
2 - Search for the `WORKSPACE_INSTALL_NPM_VUE_CLI` argument under the Workspace Container and set it to `true`
|
||||||
|
|
||||||
3 - Re-build the container `docker-compose build workspace`
|
3 - Change `vue serve` port using `WORKSPACE_VUE_CLI_SERVE_HOST_PORT` if you wish to (default value is 8080)
|
||||||
|
|
||||||
|
4 - Change `vue ui` port using `WORKSPACE_VUE_CLI_UI_HOST_PORT` if you wish to (default value is 8001)
|
||||||
|
|
||||||
|
5 - Re-build the container `docker-compose build workspace`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,8 @@ services:
|
||||||
- "dockerhost:${DOCKER_HOST_IP}"
|
- "dockerhost:${DOCKER_HOST_IP}"
|
||||||
ports:
|
ports:
|
||||||
- "${WORKSPACE_SSH_PORT}:22"
|
- "${WORKSPACE_SSH_PORT}:22"
|
||||||
|
- "${WORKSPACE_VUE_CLI_SERVE_HOST_PORT}:8080"
|
||||||
|
- "${WORKSPACE_VUE_CLI_UI_HOST_PORT}:8000"
|
||||||
tty: true
|
tty: true
|
||||||
environment:
|
environment:
|
||||||
- PHP_IDE_CONFIG=${PHP_IDE_CONFIG}
|
- PHP_IDE_CONFIG=${PHP_IDE_CONFIG}
|
||||||
|
|
|
@ -159,6 +159,8 @@ WORKSPACE_INSTALL_FFMPEG=false
|
||||||
WORKSPACE_INSTALL_GNU_PARALLEL=false
|
WORKSPACE_INSTALL_GNU_PARALLEL=false
|
||||||
WORKSPACE_INSTALL_AST=true
|
WORKSPACE_INSTALL_AST=true
|
||||||
WORKSPACE_AST_VERSION=1.0.3
|
WORKSPACE_AST_VERSION=1.0.3
|
||||||
|
WORKSPACE_VUE_CLI_SERVE_HOST_PORT=8080
|
||||||
|
WORKSPACE_VUE_CLI_UI_HOST_PORT=8001
|
||||||
WORKSPACE_INSTALL_GIT_PROMPT=false
|
WORKSPACE_INSTALL_GIT_PROMPT=false
|
||||||
|
|
||||||
### PHP_FPM ###############################################
|
### PHP_FPM ###############################################
|
||||||
|
|
Loading…
Reference in New Issue