filmov
tv
Dockerize Postgres DB and PgAdmin client using docker-comose.yml file

Показать описание
#docker #dockercompose #dockerpostgres #postgresql #postgres #pgadmin
---------------------------------
---------------------------------
version: '3.8'
services:
postgres:
container_name: postgres
image: postgres
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: book-db
ports:
- 5432:5432
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_PASSWORD: password
ports:
- 80:80
---------------------------------
---------------------------------
version: '3.8'
services:
postgres:
container_name: postgres
image: postgres
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: book-db
ports:
- 5432:5432
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_PASSWORD: password
ports:
- 80:80
How to create a docker-compose setup with PostgreSQL and pgAdmin4
Dockerize Postgres DB and PgAdmin client using docker-comose.yml file
Running a Postgres Database with Docker
How to install Postgresql and pgAdmin on Docker
How to Set Up a PostgreSQL Database with Docker
Dockerize CRUD NodeJS API - Postgres - Pgadmin
Streamline Your Development: Spring Boot with PostgreSQL & pgAdmin in Docker
Docker-Compose | Dockerizing pgAdmin and Postgres - Volumes and Custom Network IP
Docker PostgreSQL Tutorial with Persistent Data
How To Dockerize Spring Boot Application & PostgreSQL Database
pgAdmin not connecting with postgres Docker image
Docker and PostgreSQL in [10 Minutes]
CREATE A POSTGRESQL DATABASE IN 3 MINUTES WITH DOCKER
How To Easily Set Up a Postgres Database And pgAdmin With Docker
Adding PG Admin to Docker Compose
postgres + pgadmin docker compose never been this easy in 15 mins | ep 1
Docker Volumes Explained (PostgreSQL example)
How to connect your Spring Boot Application to a dockerized Postgres Database in 5 minutes.
How To Create Multi Containers Using Docker Compose | For SpringBoot & Postgresql
Spring Boot Docker and PostgreSQL
How to Create The Perfect Postgres DB Container for Your Projects
Springboot Microservice In Docker With Postgres Database in Docker Containers
Using Docker to Create PostgreSQL & PgAdmin With Docker Compose File
How to run PostgreSQL inside a Docker container
Комментарии