> For the complete documentation index, see [llms.txt](https://note.lonelylty.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://note.lonelylty.com/coding/dockerimages_deploy.md).

# 2023/03/09\_dockerImages\_deploy

```shell
#1.use ssh to upload docker-compose.yml and docker images to server directory
mkdir -p /directory   

#2.load docker images
docker load -i xxx.tar
or
docker load -i xxx.tar.gz

#3.create docker container
docker-compose up -d
```
