mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 15:52:56 +10:00
fix account deletion
This commit is contained in:
@ -1,5 +1,3 @@
|
||||
version: "3.8"
|
||||
|
||||
# In this Docker Compose example, we only fire up the services required for local development.
|
||||
# This is not advised for production use as it exposes ports to the database insecurely.
|
||||
# If you're looking for a production-ready Docker Compose file, check out the `traefik.yml` file.
|
||||
@ -7,7 +5,7 @@ version: "3.8"
|
||||
services:
|
||||
# Database (Postgres)
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
image: postgres:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${POSTGRES_PORT:-5432}:5432
|
||||
@ -23,9 +21,22 @@ services:
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
# Adminer (for database management)
|
||||
adminer:
|
||||
image: shyim/adminerevo:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5555:8080
|
||||
environment:
|
||||
ADMINER_DEFAULT_DRIVER: pgsql
|
||||
ADMINER_DEFAULT_SERVER: postgres
|
||||
ADMINER_DEFAULT_USER: ${POSTGRES_USER:-postgres}
|
||||
ADMINER_DEFAULT_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
|
||||
ADMINER_DEFAULT_DB: ${POSTGRES_DB:-postgres}
|
||||
|
||||
# Storage (for image uploads)
|
||||
minio:
|
||||
image: minio/minio
|
||||
image: minio/minio:latest
|
||||
restart: unless-stopped
|
||||
command: server /data
|
||||
ports:
|
||||
|
||||
Reference in New Issue
Block a user