记录一些常用的操作,备忘
docker-compose-file里volumes, hosts, 老是忘
1 | volumes: |
接入一个已经存在的network
1 | docker run -it --rm --network=postgres_default postgres psql -h postgres1 -U postgres db |
导入postgres的数据, 创建一个临时镜像,然后在里面操作
1 | docker run -it --rm --network=postgres_default -v host_dir:/tmp postgres /bin/bash |