test_compos/docker-compose.yml

29 lines
837 B
YAML
Raw Normal View History

2024-12-19 00:42:28 +02:00
version: "3.8"
2024-12-16 18:34:12 +02:00
services:
2024-12-19 00:42:28 +02:00
git_cloner:
image: alpine/git
volumes:
2024-12-19 03:19:36 +02:00
- /home/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 &&
2024-12-19 00:42:28 +02:00
echo 'Repository cloned';
else
echo 'Repository already exists';
2024-12-19 03:19:36 +02:00
fi; "
app:
build:
context: /home/py # Используем клонированный репозиторий для сборки
dockerfile: Dockerfile
working_dir: /app
command: python app.py
ports:
- "5000:5000" # Пробрасываем порт
depends_on:
- git_cloner
restart: always