-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
49 lines (45 loc) · 1.27 KB
/
docker-compose.prod.yml
File metadata and controls
49 lines (45 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# =============================================================================
# Star Platform - Production Docker Compose Override
# =============================================================================
#
# Usage: docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d
#
# =============================================================================
services:
backend:
restart: always
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
frontend:
restart: always
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
db:
restart: always
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
# ---------------------------------------------------------------------------
# Nginx Reverse Proxy (optional - for SSL termination)
# ---------------------------------------------------------------------------
# nginx:
# image: nginx:alpine
# container_name: star-nginx
# restart: always
# ports:
# - "80:80"
# - "443:443"
# volumes:
# - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
# - ./nginx/ssl:/etc/nginx/ssl:ro
# depends_on:
# - frontend
# - backend