-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (25 loc) · 868 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
31 lines (25 loc) · 868 Bytes
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
services:
iosmb-router:
build:
context: .
dockerfile: Dockerfile
environment:
# iOSMB Server Configuration (same as your client)
- IOSMB_SERVER_IP=${IOSMB_SERVER_IP:-192.168.1.100}
- IOSMB_SERVER_PORT=${IOSMB_SERVER_PORT:-8180}
- IOSMB_SERVER_PASSWORD=${IOSMB_SERVER_PASSWORD:-your-password-here}
- IOSMB_SERVER_SSL=${IOSMB_SERVER_SSL:-false}
# Rules file location
- IOSMB_RULES_FILE=${IOSMB_RULES_FILE:-rules.yaml}
# Timezone for correct log timestamps (e.g., Europe/Paris, America/New_York)
- TZ=${TZ:-Europe/Paris}
volumes:
# Mount your rules file
- ./rules.yaml:/app/rules.yaml:ro
restart: unless-stopped
# Optional: if using Docker networks
# networks:
# - iosmb-network
# networks:
# iosmb-network:
# external: true