Files
2026-etpgrf-site/docker-compose.yml
2025-12-26 17:23:27 +03:00

15 lines
334 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
version: '3.8'
services:
web:
build: .
# Путь к manage.py
command: python etpgrf_site/manage.py runserver 0.0.0.0:8000
volumes:
- .:/app
ports:
- "8000:8000"
env_file:
# Подключаем файл .env с переменными окружения (секретами)
- .env