Обновить docker-compose.yml

This commit is contained in:
Xanders25 2024-12-19 03:31:58 +02:00
parent 62b8073a0c
commit 7adabce7da
1 changed files with 6 additions and 9 deletions

View File

@ -1,28 +1,25 @@
version: "3.8"
services:
git_cloner:
image: alpine/git
volumes:
- /home/blues/py:/repo # Монтируем целевую папку
- /data/py:/repo
command: >
sh -c "
mkdir -p /repo && # Убедимся, что папка существует
if [ ! -d /repo/.git ]; then
git clone https://git.xander.cx.ua/Xanders25/test_compos.git /repo &&
echo 'Repository cloned';
else
echo 'Repository already exists';
fi; "
fi;
"
app:
build:
context: /home/blues/py # Используем клонированный репозиторий для сборки
context: /data/py
dockerfile: Dockerfile
working_dir: /app
command: python app.py
ports:
- "5000:5000" # Пробрасываем порт
- "5000:5000"
depends_on:
- git_cloner
restart: always