~/CunWangOwn/docke-file-test/docker-compose-demo docker-compose up
WARNING: Found orphan containers (docker-compose-demo_nginx_1) forthis project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
Creating cw_my_ngxin ... done
Attaching to cw_my_ngxin
cw_my_ngxin | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
cw_my_ngxin | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
cw_my_ngxin | 10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf
查看容器
docker container ls -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ff90b9191e44 nginx "/docker-entrypoint.…" 3 minutes ago Exited (0) 9 seconds ago cw_my_ngxin
docker-compose构建自己的镜像
version:'3.8'
services:
koa:
image:koa-test:1.0
ports:
-8181:3000
这里的image: koa-test:1.0,是我们自己构建的镜像,但是目前还没有。如果用docker compose up 构建会直接报错。我们运行一下,可以看到下面的错误。
~/CunWangOwn/docke-file-test docker-compose up
Pulling koa (koa-test:1.0)...
ERROR: The image for the service you're trying to recreate has been removed. If you continue, volume data could be lost. Consider backing up your data before continuing.
Continuewith the new image? [yN]y
Pulling koa (koa-test:1.0)...
ERROR: pull access denied for koa-test, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
意思就是这个my-node镜像在网上找不到,仓库里没有。
可以修改docker-compose.yml文件,让docker先构建镜像,然后再启动容器。
修改后的docker-compose.yml文件
文件目录结构
└── dockerfiledir
├── app.tar.gz
└── dockerfile
docker-compose.yaml
version:'3.8'
services:
cunwangkoa:
container_name:cw_koa_server
build:./dockerfiledir
image:koa-test:1.0
ports:
-8181:3000
dockerfile
FROM node:15.10.0-slim
ADD ./app.tar.gz /app
WORKDIR /app
RUN npm install --registry=https://registry.npm.taobao.org
=> => naming to docker.io/library/koa-test:1.00.0s
Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them
WARNING: Image for service cunwangkoa was built because it did not already exist. To rebuild this image you must use `docker-compose build` or `docker-compose up --build`.
Creating cw_koa_server ... done
Attaching to cw_koa_server
cw_koa_server | 村望老师的Docker测试服务器跑起来啦
查看镜像ls
~/CunWangOwn/docke-file-test docker image ls -a
REPOSITORY TAG IMAGE ID CREATED SIZE
koa-test 1.0 58127741dd2b 2 hours ago 164MB
查看容器ls
~/CunWangOwn/docke-file-test docker container ls -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
0ca15a2b8d7f koa-test:1.0 "docker-entrypoint.s…" About a minute ago Exited (137) 40 seconds ago cw_koa_server