mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 01:41:23 +02:00
Feat: New project chat, uload refactor (postgress), hosting plans, uload landingpage
This commit is contained in:
parent
559eb08d8c
commit
fcf3a344b1
123 changed files with 7106 additions and 3715 deletions
36
packages/uload-database/docker-compose.yml
Normal file
36
packages/uload-database/docker-compose.yml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
services:
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
container_name: uload-postgres
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '5434:5432'
|
||||
environment:
|
||||
POSTGRES_DB: uload
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
volumes:
|
||||
- uload_postgres_data:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ['CMD-SHELL', 'pg_isready -U postgres']
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
pgadmin:
|
||||
image: dpage/pgadmin4:latest
|
||||
container_name: uload-pgadmin
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '5051:80'
|
||||
environment:
|
||||
PGADMIN_DEFAULT_EMAIL: admin@uload.local
|
||||
PGADMIN_DEFAULT_PASSWORD: admin
|
||||
volumes:
|
||||
- uload_pgadmin_data:/var/lib/pgadmin
|
||||
depends_on:
|
||||
- postgres
|
||||
|
||||
volumes:
|
||||
uload_postgres_data:
|
||||
uload_pgadmin_data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue