mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-23 21:21:32 +10:00
chore(server): update dependencies and add API tags to
controllers
This commit is contained in:
150
tools/compose/traefik-secure.yml
Normal file
150
tools/compose/traefik-secure.yml
Normal file
@ -0,0 +1,150 @@
|
||||
version: "3"
|
||||
|
||||
# In this Docker Compose example, we use Traefik to route requests to the app and storage containers in a secure manner (HTTPS).
|
||||
# This example assumes you have a domain name (example.com) and a wildcard DNS record pointing to your server.
|
||||
# The only exposed ports here are from Traefik (80 and 443). All non-secure requests are redirected to HTTPS.
|
||||
# Note: Please change `example.com` to your domain name where necessary.
|
||||
|
||||
services:
|
||||
# Database (Postgres)
|
||||
postgres:
|
||||
image: postgres
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: postgres
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
healthcheck:
|
||||
test: ["CMD", "pg_isready -U postgres -d postgres"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
# Storage (for image uploads)
|
||||
minio:
|
||||
image: minio/minio
|
||||
restart: unless-stopped
|
||||
command: server /data
|
||||
volumes:
|
||||
- minio_data:/data
|
||||
environment:
|
||||
MINIO_ROOT_USER: minioadmin
|
||||
MINIO_ROOT_PASSWORD: minioadmin
|
||||
labels:
|
||||
- traefik.enable
|
||||
- traefik.http.routers.app.rule=Host(`storage.example.com`)
|
||||
- traefik.http.routers.app.entrypoints=websecure
|
||||
- traefik.http.routers.app.tls.certresolver=letsencrypt
|
||||
- traefik.http.services.app.loadbalancer.server.port=9000
|
||||
|
||||
# Chrome Browser (for printing and previews)
|
||||
chrome:
|
||||
image: browserless/chrome
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TOKEN: chrome_token
|
||||
EXIT_ON_HEALTH_FAILURE: true
|
||||
PRE_REQUEST_HEALTH_CHECK: true
|
||||
|
||||
# Redis (for cache & server session management)
|
||||
redis:
|
||||
image: redis
|
||||
restart: unless-stopped
|
||||
command: redis-server --save 60 1 --loglevel warning --requirepass password
|
||||
volumes:
|
||||
- redis_data:/data
|
||||
|
||||
app:
|
||||
image: amruthpillai/reactive-resume:v4.0.0-alpha.0
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- postgres
|
||||
- minio
|
||||
- redis
|
||||
- chrome
|
||||
environment:
|
||||
# -- Environment Variables --
|
||||
PORT: 3000
|
||||
NODE_ENV: production
|
||||
|
||||
# -- URLs --
|
||||
PUBLIC_URL: http://example.com
|
||||
STORAGE_URL: http://storage.example.com
|
||||
|
||||
# -- Printer (Chrome) --
|
||||
CHROME_URL: ws://chrome:3000
|
||||
CHROME_TOKEN: chrome_token
|
||||
|
||||
# -- Database (Postgres) --
|
||||
DATABASE_URL: postgresql://postgres:postgres@postgres:5432/postgres
|
||||
|
||||
# -- Auth --
|
||||
ACCESS_TOKEN_SECRET: access_token_secret
|
||||
REFRESH_TOKEN_SECRET: refresh_token_secret
|
||||
|
||||
# -- Emails --
|
||||
# SMTP_URL: smtp://user:pass@smtp:587 # Optional
|
||||
|
||||
# -- Storage (Minio) --
|
||||
STORAGE_ENDPOINT: minio
|
||||
STORAGE_PORT: 9000
|
||||
STORAGE_REGION: us-east-1 # Optional
|
||||
STORAGE_BUCKET: default
|
||||
STORAGE_ACCESS_KEY: minioadmin
|
||||
STORAGE_SECRET_KEY: minioadmin
|
||||
|
||||
# -- Cache (Redis) --
|
||||
REDIS_URL: redis://default:password@redis:6379
|
||||
|
||||
# -- Sentry --
|
||||
# SENTRY_DSN: https://id.sentry.io # Optional
|
||||
|
||||
# -- GitHub --
|
||||
GITHUB_CLIENT_ID: github_client_id
|
||||
GITHUB_CLIENT_SECRET: github_client_secret
|
||||
GITHUB_CALLBACK_URL: http://localhost:3000/api/auth/github/callback
|
||||
|
||||
# -- Google --
|
||||
GOOGLE_CLIENT_ID: google_client_id
|
||||
GOOGLE_CLIENT_SECRET: google_client_secret
|
||||
GOOGLE_CALLBACK_URL: http://localhost:3000/api/auth/google/callback
|
||||
labels:
|
||||
- traefik.enable
|
||||
- traefik.http.routers.app.rule=Host(`example.com`)
|
||||
- traefik.http.routers.app.entrypoints=websecure
|
||||
- traefik.http.routers.app.tls
|
||||
- traefik.http.routers.app.tls.certresolver=letsencrypt
|
||||
- traefik.http.services.app.loadbalancer.server.port=3000
|
||||
|
||||
traefik:
|
||||
image: traefik
|
||||
command:
|
||||
- --api
|
||||
- --providers.docker
|
||||
- --providers.docker.exposedbydefault=false
|
||||
- --entrypoints.web.address=:80
|
||||
- --entrypoints.websecure.address=:443
|
||||
- --certificatesresolvers.letsencrypt.acme.tlschallenge
|
||||
- --certificatesresolvers.letsencrypt.acme.email=noreply@example.com
|
||||
- --certificatesresolvers.letsencrypt.acme.storage=/letsencrypt/acme.json
|
||||
|
||||
# Let's Encrypt Staging Server (for testing)
|
||||
- --certificatesResolvers.letsencrypt.acme.caServer=https://acme-staging-v02.api.letsencrypt.org/directory
|
||||
|
||||
# Redirect all HTTP requests to HTTPS
|
||||
- --entrypoints.web.http.redirections.entrypoint.to=websecure
|
||||
- --entrypoints.web.http.redirections.entrypoint.scheme=https
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
volumes:
|
||||
- letsencrypt_data:/letsencrypt
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
volumes:
|
||||
minio_data:
|
||||
redis_data:
|
||||
postgres_data:
|
||||
letsencrypt_data:
|
||||
Reference in New Issue
Block a user