Skip to content

Commit 64b75e9

Browse files
committed
Update project compose file
Signed-off-by: Kang Huaishuai <[email protected]>
1 parent 31ea892 commit 64b75e9

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

docker-compose.yml

+16-15
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,31 @@ version: "3"
22

33
services:
44

5-
# $ docker-compose up server => up a server,Only Support Linux or macOS
6-
server:
7-
image: yeasy/docker_practice:latest
8-
ports:
9-
- 4000:4000
10-
volumes:
11-
- ./:/srv/gitbook-src
12-
command: server
13-
14-
# $ docker-compose up build => build gitbook
15-
16-
build:
5+
gitbook-build:
6+
&gitbook-build
177
image: yeasy/docker_practice:latest
188
volumes:
199
- ./:/srv/gitbook-src
2010
command: build
2111

22-
# $ docker run -it --rm -p 4000:80 dockerpracticesig/docker_practice
23-
offline:
12+
gitbook-server:
13+
<< : *gitbook-build
14+
ports:
15+
- 4000:4000
16+
command: server
17+
18+
# docker run -it --rm -p 4000:80 dockerpracticesig/docker_practice
19+
gitbook-offline:
20+
&gitbook-offline
2421
# this image build by GitHub Action
25-
image: dockerpracticesig/docker_practice
22+
image: dockerpracticesig/docker_practice:gitbook
2623
ports:
2724
- 4000:80
2825

26+
vuepress-offline:
27+
<< : *gitbook-offline
28+
image: dockerpracticesig/docker_practice:vuepress
29+
2930
# developer test docker image
3031

3132
development:

0 commit comments

Comments
 (0)