17 lines
360 B
YAML
17 lines
360 B
YAML
version: '3.8'
|
|
services:
|
|
postgres:
|
|
image: postgres:15
|
|
container_name: bookmark_postgres
|
|
environment:
|
|
POSTGRES_DB: bookmark_manager
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: password
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
postgres_data: |