프로그램 활용/클라우드 가상화 도커81 도커 Drupal postgresql 개발환경 구축 DockerによるDrupal8開発環境の構築 DockerDrupalContainer https://www.870labo.com/tags/docker/ Drupalの開発環境をDockerで構築しました。その方法を記述します。Dockerでの環境構築は、一度設定してしまえば複数のサイトでも使いまわせるため便利です。 はじめに Drupalでサイトを構築す www.870labo.com 2019-12-09 출처: https://www.870labo.com/posts/build-drupal8-devenv-with-docker/ はじめに Drupalでサイトを構築する機会がありました。 Drupalでの開発環境を構築する場合、以下のものを用意する必要があります。 Webサーバー DBサーバー Drupal これらをmac上で用意しようとした場合、一般的には .. 2023. 7. 25. Docker x PostgreSql 출처: [Docker] Docker X PostgreSQL 설치 및 연동 (velog.io) Docker x PostgreSql ➕ PostgreSQL 설치 1. Postgres 이미지 내려받기 $ docker pull postgres 2. Postgres 실행 호스트의 5432포트와 컨테이너의 5432포트를 연결해주고 postgres 라는 이름을 가진 컨테이너에 환경변수 POSTGRES_PASSWORD 의 값을 넣어주어 실행시켜주겠습니다. postgres 이미지의 환경변수에 대한 더 자세한 내용은 아래 링크에서 확인 할 수 있습니다. Postgres - Official Image | DockerHub $ docker run -d -p 5432:5432 --name postgres -e POSTGRES_.. 2023. 7. 25. Ubuntu 22.04에서 Docker로 Drupal을 설치하는 방법 Ubuntu 22.04에서 Docker로 Drupal을 설치하는 방법 출처: Ubuntu 22.04에서 Docker로 Drupal을 설치하는 방법 (linux-console.net) 이 페이지에서 전제 조건 1단계 - 방화벽 구성\n 2단계 - Docker 및 Docker Compose 설치 3단계 - Drupal용 Docker Compose 파일 만들기 MySQL 도커 서비스 드루팔 서비스 Nginx 서비스 Certbot 서비스 Drupal은 PHP로 작성된 오픈 소스 콘텐츠 관리 시스템(CMS)입니다. 전 세계의 많은 조직에서 이를 사용하여 블로그, 정부 사이트, 기업 웹사이트 등을 만듭니다. 기능을 확장할 수 있는 기능 및 모듈 세트가 함께 제공되어 원하는 웹 사이트를 만들 수 있습니다.전제 조건 .. 2023. 7. 25. How to Install Drupal with Docker on Ubuntu 22.04 출처: How to Install Drupal with Docker on Ubuntu 22.04 (howtoforge.com) On this page Prerequisites Step 1 - Configure Firewall Step 2 - Install Docker and Docker Compose Step 3 - Create Docker Compose File for Drupal MySQL Docker Service Drupal Service Nginx service Certbot service Step 4 - Create Nginx Configuration Step 5 - Generate SSL certificates Step 6 - Configure Nginx for SSL Step 7 - Sta.. 2023. 7. 25. Use Docker install Postgres for Drupal Use Docker install Postgres for Drupal 출처: https://ionemind.com/content/use-docker-install-postgres-drupal # Pull docker postgres docker pull postgres # Run postgres instance docker run --name drupal-postgres -d -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres # Exec docker docker exec -it drupal-postgres bash # Create database and user; # Login to postgres command line psql -U postgres # Cre.. 2023. 7. 25. 이전 1 ··· 9 10 11 12 13 14 15 ··· 17 다음