Dockerfile 构建过程使用命令:
# build
docker build -t imagename .
# 例如: docker build -t hr_api:v1 .
清缓存build
docker build --no-cache -t imagename .
# 进到容器内
docker run -it --rm imagename
# run
docker run -d -p 80:80 --name custom_name imagename
# 查看在运行容器
导数据到docker postgres
docker cp ./hr_search_data+struct.sql hr_search_pg_1:/tmp/
docker exec -it hr_search_pg_1 psql -U postgres -d wondercv_hr -f /tmp/hr_search_data+struct.sql