03-postgresql

This commit is contained in:
Marat Kharitonov
2024-03-09 20:41:51 -05:00
parent aba99ef0b4
commit 10ad49476f
13 changed files with 88 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
version: '3.3'
services:
postgres:
image: library/postgres:16.2
volumes:
- postgres-data:/var/lib/postgresql
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 1337
ports:
- '5432:5432'
restart: always
volumes:
postgres-data: