-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdocker-compose.override.yml.example
More file actions
51 lines (43 loc) · 1.1 KB
/
docker-compose.override.yml.example
File metadata and controls
51 lines (43 loc) · 1.1 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
50
51
# docker-compose.override.yml.example
#
# Copy this file to docker-compose.override.yml for local production customizations
# docker-compose.override.yml is git-ignored and will be automatically loaded by Docker Compose
#
# Example customizations:
version: '3.8'
services:
# Example: Expose backend port for debugging
# backend:
# ports:
# - "3001:3001"
# Example: Expose database port for local tools
# db:
# ports:
# - "5432:5432"
# Example: Custom nginx ports
# nginx:
# ports:
# - "8080:80"
# - "8443:443"
# Example: Enable Umami web interface
# umami:
# ports:
# - "3000:3000"
# Example: Use different storage paths
# backend:
# volumes:
# - /mnt/photos:/app/storage
# - /mnt/data:/app/data
# Example: Development-like setup with code mounting
# backend:
# volumes:
# - ./backend:/app
# - /app/node_modules
# command: npm run dev
# Example: Add Mailhog for email testing
# mailhog:
# image: mailhog/mailhog:latest
# ports:
# - "1025:1025"
# - "8025:8025"
# restart: unless-stopped