From bbd7b335dde4688ba1bdbbcaa18d703812e12879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=8D=E3=82=80=E3=81=AD=E3=81=93?= Date: Wed, 26 Jun 2024 16:04:21 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=87=E3=83=90=E3=83=83=E3=82=B0=E7=94=A8?= =?UTF-8?q?=E3=81=AEdocker-compose=E3=82=92=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/docker-compose.yml | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 dev/docker-compose.yml diff --git a/dev/docker-compose.yml b/dev/docker-compose.yml new file mode 100644 index 0000000..6ecd379 --- /dev/null +++ b/dev/docker-compose.yml @@ -0,0 +1,47 @@ +version: '3.8' + +services: + postgres: + image: postgres:latest + container_name: postgres_debug + environment: + POSTGRES_USER: kidshift + POSTGRES_PASSWORD: kidshift + POSTGRES_DB: kidshift + ports: + - "5432:5432" + volumes: + - postgres_debug_data:/var/lib/postgresql/data + + minio: + image: minio/minio:latest + container_name: minio_debug + environment: + MINIO_ROOT_USER: kidshift + MINIO_ROOT_PASSWORD: kidshift + ports: + - "9000:9000" + - "9001:9001" + volumes: + - minio_debug_data:/data + - minio_debug_config:/root/.minio + command: server /data --console-address ":9001" + + pgadmin: + image: dpage/pgadmin4:latest + container_name: pgadmin_debug + environment: + PGADMIN_DEFAULT_EMAIL: kidshift@nem.x0.to + PGADMIN_DEFAULT_PASSWORD: kidshift + ports: + - "5050:80" + volumes: + - pgadmin_debug_data:/var/lib/pgadmin + depends_on: + - postgres + +volumes: + postgres_debug_data: + minio_debug_data: + minio_debug_config: + pgadmin_debug_data: