mirror of
https://github.com/nestriness/nestri.git
synced 2026-09-19 09:15:19 +03:00
feat: Sync to OSS repo
This commit is contained in:
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: docker.io/postgres:18-alpine
|
||||
container_name: nestri_postgres
|
||||
environment:
|
||||
POSTGRES_USER: postgres # Matches: user: 'postgres'
|
||||
POSTGRES_PASSWORD: postgres # Matches: password: 'postgres'
|
||||
POSTGRES_DB: nestri # Matches: database: 'nestri'
|
||||
ports:
|
||||
- '5432:5432' # Matches: port: 5432
|
||||
volumes:
|
||||
- nestri_data:/var/lib/postgresql
|
||||
|
||||
volumes:
|
||||
nestri_data: # Keeps your data safe when container restarts
|
||||
Reference in New Issue
Block a user