This commit is contained in:
2025-08-08 10:39:10 +09:00
parent 05bc50269d
commit c8068aea1d
223 changed files with 2199 additions and 13 deletions

14
docker/bot/.dockerignore Normal file
View File

@@ -0,0 +1,14 @@
.git/
bin/
backups/
# Исключаем хранилище БД
db_storage/
app/var/lib/mysql
# Остальное лишнее
.git
.venv
__pycache__
*.pyc
*.pyo
.env

View File

@@ -6,3 +6,4 @@ COPY docker/bot/requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
COPY . /app

View File

@@ -0,0 +1,14 @@
.git/
bin/
backups/
# Исключаем хранилище БД
db_storage/
app/var/lib/mysql
# Остальное лишнее
.git
.venv
__pycache__
*.pyc
*.pyo
.env

14
docker/db/.dockerignore Normal file
View File

@@ -0,0 +1,14 @@
.git/
bin/
backups/
# Исключаем хранилище БД
db_storage/
app/var/lib/mysql
# Остальное лишнее
.git
.venv
__pycache__
*.pyc
*.pyo
.env

14
docker/main/.dockerignore Normal file
View File

@@ -0,0 +1,14 @@
.git/
bin/
backups/
# Исключаем хранилище БД
db_storage/
app/var/lib/mysql
# Остальное лишнее
.git
.venv
__pycache__
*.pyc
*.pyo
.env