695 B
695 B
title, description, published, date, tags, editor, dateCreated
title | description | published | date | tags | editor | dateCreated |
---|---|---|---|---|---|---|
03 Postgres | true | 2023-05-03T02:55:42.498Z | markdown | 2023-05-03T01:59:02.150Z |
PostgreSQL
Another Database server, It is a more modern database used by more modern applications
Create a folder for the project
mkdir -p ~/docker/postgres
Now create a compose file
vim ~/docker/postgres/docker-compose.yml
Add in the following text
version: '3'
services:
postgres:
image: postgres:latest
container_name: postgres
restart: always
volumes:
- /data/postgres:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=Set your postgresql root password here
WIP!
PGAdmin
WIP!