Files
web_work/docker-compose.yml
kirill.khorkov fe288b3caf Fix
2025-12-17 01:18:57 +03:00

29 lines
619 B
YAML

version: '3.8'
services:
apache:
build:
context: .
dockerfile: Dockerfile
container_name: cite_practica_apache
ports:
- "80:80"
volumes:
- ./public:/var/www/html/cite_practica:rw
- ./docker/apache/vhosts.conf:/etc/apache2/sites-available/000-default.conf:ro
environment:
- APACHE_DOCUMENT_ROOT=/var/www/html/cite_practica
command: >
bash -c "
echo '127.0.0.1 admin' >> /etc/hosts &&
apache2-foreground
"
networks:
- cite_practica_network
restart: unless-stopped
networks:
cite_practica_network:
driver: bridge