You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vuejs/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,16 +24,16 @@ services:
24
24
- /project/node_modules
25
25
```
26
26
The compose file defines an application with one service `sparkjava`.
27
-
When deploying the application, docker-compose maps port 8080 of the web service container to port 80 of the host as specified in the file.
28
-
Make sure port 80 on the host is not already being in use.
27
+
When deploying the application, docker-compose maps port 8080 of the web service container to port 8080 of the host as specified in the file.
28
+
Make sure port 8080 on the host is not already being in use.
29
29
30
30
## Deploy with docker-compose
31
31
32
32
```
33
33
$ docker-compose up -d
34
34
Creating network "vuejs_default" with the default driver
35
35
Building web
36
-
Step 1/8 : FROM node:10
36
+
Step 1/8 : FROM node:13.10.1-alpine
37
37
...
38
38
Successfully tagged vuejs_web:latest
39
39
WARNING: Image for service web was built because it did not already exist. To rebuild this image you must use `docker-compose build` or `docker-compose up --build`.
0 commit comments