如何使用Docker容器化Django应用程序以及PostgreSQL数据库和现有数据?

huangapple go评论130阅读模式
英文:

How to dockerize django app with postgres database and existing data?

问题

我有一个本地的PostgreSQL数据库,并且有两个正在运行的Docker容器:Django应用程序和PostgreSQL数据库。

我已经进行了迁移,表已生成,但表是空的 - 表是空的。

例如,在终端中。

所以这是Dockerfile:

  1. # 拉取官方基础镜像
  2. FROM python:3.9-alpine3.13
  3. # 设置工作目录
  4. WORKDIR /usr/src/app
  5. EXPOSE 8000
  6. # 设置环境变量
  7. ENV PYTHONDONTWRITEBYTECODE 1
  8. ENV PYTHONUNBUFFERED 1
  9. # 安装 psycopg2 依赖
  10. RUN apk update \
  11. && apk add linux-headers postgresql-dev gcc python3-dev musl-dev
  12. # 安装依赖
  13. RUN pip install --upgrade pip
  14. COPY ./requirements.txt .
  15. COPY ./requirements.dev.txt .
  16. RUN pip install -r requirements.txt
  17. # 复制 entrypoint.sh
  18. COPY ./entrypoint.sh .
  19. RUN sed -i 's/\r$//g' /usr/src/app/entrypoint.sh
  20. RUN chmod +x /usr/src/app/entrypoint.sh
  21. # 复制项目
  22. COPY . .
  23. # 运行 entrypoint.sh
  24. ENTRYPOINT ["/usr/src/app/entrypoint.sh"]

docker-compose 文件:

  1. version: '3.9'
  2. services:
  3. app:
  4. build:
  5. context: .
  6. args:
  7. - DEV=true
  8. ports:
  9. - "8000:8000"
  10. volumes:
  11. - .:/app
  12. command: >
  13. sh -c "python ./manage.py migrate &&
  14. python ./manage.py runserver 0:8000"
  15. env_file:
  16. - ./.env
  17. depends_on:
  18. - db
  19. db:
  20. image: postgres:13-alpine
  21. container_name: postgres
  22. volumes:
  23. - dev-db-data:/var/lib/postgresql/data:/usr/local/var/postgresql/
  24. env_file:
  25. - ./.env
  26. ports:
  27. - '5432:5432'
  28. volumes:
  29. dev-db-data:
  30. dev-static-data:

和 entrypoint.sh:

  1. #!/bin/sh
  2. if [ "$DATABASE" = "postgres" ]
  3. then
  4. echo "Waiting for postgres..."
  5. while ! nc -z $SQL_HOST $SQL_PORT; do
  6. sleep 0.1
  7. done
  8. echo "PostgreSQL started"
  9. fi
  10. python manage.py flush --no-input
  11. python manage.py makemigrations --merge
  12. python manage.py migrate --noinput
  13. exec "$@"

所以当我运行容器时:docker-compose up。

然后我转到:http://127.0.0.1:8000/admin/login/?next=/admin/

我看到了Django的管理面板。但我无法登录。因为表:accounts_account中没有数据

问题:如何从现有的PostgreSQL数据库中获取数据填充到Docker容器中的表格中?

好的,我将SQL文件复制到Docker容器的pgd_snapshots文件夹中。

然后我登录到PostgreSQL:psql -h localhost -U postgres

然后切换到用户psql -h localhost -U animalzijn

然后我看到了这个:

  1. animalzijn=#

接下来我该做什么?

英文:

I have a local postgres database with data in it. And I have two docker containers running:
django app and the postgress database.

And I have done the migrations. the tables are generated, but the tables are empty - the tables are emtpy.

For example in the terminal.

So this is the dockerfile:

  1. # pull official base image
  2. FROM python:3.9-alpine3.13
  3. # set work directory
  4. WORKDIR /usr/src/app
  5. EXPOSE 8000
  6. # set environment variables
  7. ENV PYTHONDONTWRITEBYTECODE 1
  8. ENV PYTHONUNBUFFERED 1
  9. # install psycopg2 dependencies
  10. RUN apk update \
  11. && apk add linux-headers postgresql-dev gcc python3-dev musl-dev
  12. # install dependencies
  13. RUN pip install --upgrade pip
  14. COPY ./requirements.txt .
  15. COPY ./requirements.dev.txt .
  16. RUN pip install -r requirements.txt
  17. # copy entrypoint.sh
  18. COPY ./entrypoint.sh .
  19. RUN sed -i 's/\r$//g' /usr/src/app/entrypoint.sh
  20. RUN chmod +x /usr/src/app/entrypoint.sh
  21. # copy project
  22. COPY . .
  23. # run entrypoint.sh
  24. ENTRYPOINT ["/usr/src/app/entrypoint.sh"]

docker-compose file:

  1. version: '3.9'
  2. services:
  3. app:
  4. build:
  5. context: .
  6. args:
  7. - DEV=true
  8. ports:
  9. - "8000:8000"
  10. volumes:
  11. - .:/app
  12. command: >
  13. sh -c "python ./manage.py migrate &&
  14. python ./manage.py runserver 0:8000"
  15. env_file:
  16. - ./.env
  17. depends_on:
  18. - db
  19. db:
  20. image: postgres:13-alpine
  21. container_name: postgres
  22. volumes:
  23. - dev-db-data:/var/lib/postgresql/data:/usr/local/var/postgresql/
  24. env_file:
  25. - ./.env
  26. ports:
  27. - '5432:5432'
  28. volumes:
  29. dev-db-data:
  30. dev-static-data:

and entrypoint.sh:

  1. #!/bin/sh
  2. if [ "$DATABASE" = "postgres" ]
  3. then
  4. echo "Waiting for postgres..."
  5. while ! nc -z $SQL_HOST $SQL_PORT; do
  6. sleep 0.1
  7. done
  8. echo "PostgreSQL started"
  9. fi
  10. python manage.py flush --no-input
  11. python manage.py makemigrations --merge
  12. python manage.py migrate --noinput
  13. exec "$@"

So When I run the containers: docker-compose up.

And I go to: http://127.0.0.1:8000/admin/login/?next=/admin/

I see the admin panel from django. But I can't login. Because the table: accounts_account has no data in it

Question: how to get the data from the existing postgress database in the tables in the docker container?

Oke, I copied the sql file to the folder name pgd_snapshots of the docker container.

and I login in postgres: psql -h localhost -U postgres

and then I switch to user psql -h localhost -U animalzijn
And then I see this:

  1. animalzijn=#

What I have to do next?

答案1

得分: 1

你可以使用Postgres工具pg_dump导出本地数据库。登录到本地实例的SQL Shell,使用pgdump命令将数据库导出到一个SQL文件中(例如):

  1. pg_dump database_name > database_name_20230717.sql

通常,我会将这个SQL文件保存到安装Postgres的位置下的/pg_snapshots目录中。

然后将此SQL文件复制到挂载到Postgres容器的卷内的/pg_snapshots目录中。

登录到容器,切换到postgres用户,然后运行psql来导入数据库:

  1. psql database_name < database_name_20230717.sql

来源:https://www.netguru.com/blog/how-to-dump-and-restore-postgresql-database

英文:

You can export your local database using the postgres tool pg_dump. Login to the SQL Shell for your local instance and use the pgdump command to export the database to a sql file (e.g.):

  1. pg_dump database_name &gt; database_name_20230717.sql

I usually do this to the /pg_snapshots directory which should be under /data wherever you installed postgres

Then copy this sql file to the /pg_snapshots inside the volume mounted to your postgres container.

Login to you container, su to postgres and run psql to import the db:

  1. psql database_name &lt; database_name_20230717.sql

source: https://www.netguru.com/blog/how-to-dump-and-restore-postgresql-database

huangapple
  • 本文由 发表于 2023年7月17日 22:55:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/76705708.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定