This commit is contained in:
2026-03-14 11:04:21 +03:00
parent 432095ca3e
commit 7033405761

View File

@@ -5,7 +5,7 @@ services:
ports: ports:
- "8070:8070" - "8070:8070"
volumes: volumes:
- ./data/message/config.yml:/app/config.yml - ./message/config.yml:/app/config.yml
restart: unless-stopped restart: unless-stopped
tracker: tracker:
image: git.madsky.ru/vadim/tracker:latest image: git.madsky.ru/vadim/tracker:latest
@@ -13,7 +13,7 @@ services:
ports: ports:
- "3300:3000" - "3300:3000"
volumes: volumes:
- ./data/tracker/config.yaml:/app/config.yaml - ./tracker/config.yaml:/app/config.yaml
restart: unless-stopped restart: unless-stopped
nats: nats:
image: nats image: nats
@@ -25,8 +25,8 @@ services:
- "6222:6222" - "6222:6222"
- "8222:8222" - "8222:8222"
volumes: volumes:
- ./data/nats.conf:/etc/nats/nats.conf - ./nats/nats.conf:/etc/nats/nats.conf
- ./data/nats:/data - ./nats:/data
redis: redis:
image: redis:latest image: redis:latest
container_name: redis container_name: redis
@@ -35,14 +35,14 @@ services:
- "6379:6379" - "6379:6379"
command: ["redis-server", "--save", "60 1", "--loglevel", "warning"] command: ["redis-server", "--save", "60 1", "--loglevel", "warning"]
volumes: volumes:
- ./data/redis:/data - ./redis:/data
homebridge: homebridge:
image: homebridge/homebridge:latest image: homebridge/homebridge:latest
container_name: homebridge container_name: homebridge
restart: unless-stopped restart: unless-stopped
network_mode: host network_mode: host
volumes: volumes:
- ./data/homebridge:/homebridge - ./homebridge:/homebridge
logging: logging:
driver: json-file driver: json-file
options: options:
@@ -61,14 +61,14 @@ services:
ports: ports:
- "1883:1883" - "1883:1883"
volumes: volumes:
- ./data/mosquitto/config:/mosquitto/config - ./mosquitto/config:/mosquitto/config
postgres: postgres:
image: postgres:17.6-alpine image: postgres:17.6-alpine
container_name: postgres container_name: postgres
environment: environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
volumes: volumes:
- ./data/postgres:/var/lib/postgresql/data - ./postgres:/var/lib/postgresql/data
ports: ports:
- "5432:5432" - "5432:5432"
restart: unless-stopped restart: unless-stopped
@@ -85,7 +85,7 @@ services:
- GITEA__database__PASSWD=postgres - GITEA__database__PASSWD=postgres
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ./data/gitea:/data - ./gitea:/data
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
ports: ports:
@@ -111,5 +111,5 @@ services:
- RUSTFS_OBJECT_CACHE_ENABLE=true - RUSTFS_OBJECT_CACHE_ENABLE=true
- RUSTFS_OBJECT_CACHE_TTL_SECS=300 - RUSTFS_OBJECT_CACHE_TTL_SECS=300
volumes: volumes:
- ./data/rustfs/fs:/data/ - ./rustfs/fs:/data/
restart: unless-stopped restart: unless-stopped