PostgreSQL을 Docker 및 Django와 연결하려면 다음 단계를 따르세요.
Docker 및 Docker Compose 설정:
Docker와 Docker Compose가 컴퓨터에 설치되어 있는지 확인하세요.
Docker Compose 파일 만들기:
Django 및 PostgreSQL용 서비스를 정의하기 위해 docker-compose.yml 파일을 생성합니다.
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에서 애플리케이션에 액세스할 수 있습니다.
위 내용은 docker 및 django를 사용하여 postgres 연결의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!