From 79d68ae831a7cfe23f22612c77ef572a44cbcd5f Mon Sep 17 00:00:00 2001 From: dimti Date: Sun, 16 Aug 2020 13:42:02 +0300 Subject: [PATCH] + postgres example config in docker compose yml --- docker-compose.yml.example | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docker-compose.yml.example b/docker-compose.yml.example index a4fdb5b..4a10f33 100755 --- a/docker-compose.yml.example +++ b/docker-compose.yml.example @@ -148,6 +148,29 @@ services: PMA_PASSWORD: 123456 ports: - "81:80" + dbpg: + image: postgres + restart: always + environment: + POSTGRES_PASSWORD: postgres + volumes: + - databasepg:/var/lib/postgresql/data + - /data/hostfiles:/hostfiles + adminer: + image: adminer + restart: always + ports: + - 8080:8080 + pgadmin: + image: dpage/pgadmin4 + restart: always + environment: + PGADMIN_DEFAULT_EMAIL: info@wpstudio.ru + PGADMIN_DEFAULT_PASSWORD: postgres + ports: + - "83:80" + volumes: + - /data/hostfiles/pgadmin:/var/lib/pgadmin redis: image: redis restart: always