要將 PostgreSQL 與 Docker 和 Django 連接,請按照以下步驟操作:
設定 Docker 和 Docker Compose:
確保您的電腦上安裝了 Docker 和 Docker Compose。
建立 Docker Compose 檔案:
建立 docker-compose.yml 檔案來定義 Django 和 PostgreSQL 的服務。
version: '3.8' services: db: image: postgres:13 environment: POSTGRES_DB: mydatabase POSTGRES_USER: myuser POSTGRES_PASSWORD: mypassword volumes: - postgres_data:/var/lib/postgresql/data web: build: . command: python manage.py runserver 0.0.0.0:8000 volumes: - .:/code ports: - "8000:8000" depends_on: - db volumes: postgres_data:
# Use the official Python image from the Docker Hub FROM python:3.9 # Set the working directory in the container WORKDIR /code # Copy the requirements file into the container COPY requirements.txt /code/ # Install the dependencies RUN pip install -r requirements.txt # Copy the rest of the application code into the container COPY . /code/
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', 'NAME': 'mydatabase', 'USER': 'myuser', 'PASSWORD': 'mypassword', 'HOST': 'db', 'PORT': '5432', } }
Django>=3.2,<4.0 psycopg2-binary>=2.8,<3.0
docker-compose up --build
docker-compose exec web python manage.py migrate
docker-compose exec web python manage.py createsuperuser
現在,您應該有一個連接到 PostgreSQL 資料庫的工作 Django 應用程序,兩者都在 Docker 容器中運行。您可以透過 http://localhost:8000 存取您的應用程式。
以上是將 postgres 與 docker 和 django 連接的詳細內容。更多資訊請關注PHP中文網其他相關文章!