You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
270 B
11 lines
270 B
version: '3.1'
|
|
services:
|
|
nuxt:
|
|
build:
|
|
context: . #对应自己构建的image,名称自定义
|
|
command: tail -f /dev/null
|
|
container_name: nuxt #对应自己构建的image,名称自定义
|
|
volumes:
|
|
- ./:/nuxt
|
|
ports:
|
|
- 10822:10822
|
|
|