From 90d2abdf1deded216f16d907eeabd736abc4be9e Mon Sep 17 00:00:00 2001 From: mr-forust Date: Tue, 11 Nov 2025 01:57:44 +0100 Subject: [PATCH] Move userbot Docker Compose configuration for forust and anna services --- ...compose.yml => userbot-docker-compose.yaml | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) rename userbot/compose.yml => userbot-docker-compose.yaml (70%) diff --git a/userbot/compose.yml b/userbot-docker-compose.yaml similarity index 70% rename from userbot/compose.yml rename to userbot-docker-compose.yaml index 974d011..13db90e 100644 --- a/userbot/compose.yml +++ b/userbot-docker-compose.yaml @@ -1,7 +1,7 @@ services: userbot_forust: build: - context: . + context: userbot/. dockerfile: Dockerfile container_name: userbot_forust restart: unless-stopped @@ -9,9 +9,9 @@ services: - .env - .env.forust volumes: - - ./volumes/data_forust:/app/data - - ./Downloads:/app/downloads - - ./volumes/logs_forust:/app/logs + - ./userbot/volumes/data_forust:/app/data + - ./userbot/Downloads:/app/downloads + - ./userbot/volumes/logs_forust:/app/logs networks: - userbot_network dns: @@ -20,13 +20,13 @@ services: develop: watch: - action: sync - path: ./modules + path: ./userbot/modules target: /app/modules - action: sync - path: ./utils + path: ./userbot/utils target: /app/utils - action: sync - path: ./main.py + path: ./userbot/main.py target: /app/main.py - action: rebuild path: .env @@ -43,9 +43,9 @@ services: - .env - .env.anna volumes: - - ./volumes/data_anna:/app/data - - ./Downloads:/app/downloads - - ./volumes/logs_anna:/app/logs + - ./userbot/volumes/data_anna:/app/data + - ./userbot/Downloads:/app/downloads + - ./userbot/volumes/logs_anna:/app/logs networks: - userbot_network dns: @@ -54,13 +54,13 @@ services: develop: watch: - action: sync - path: ./modules + path: ./userbot/modules target: /app/modules - action: sync - path: ./utils + path: ./userbot/utils target: /app/utils - action: sync - path: ./main.py + path: ./userbot/main.py target: /app/main.py - action: rebuild path: .env