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