Apache2

docker-compose.yaml
1
2
3
4
5
6
7
8
9
services:
    apache:
        image: ubuntu/apache2:latest
        container_name: apache-node-1
        ports:
            - "80:80"
        volumes:
            - ./apache-data:/var/www/html
        restart: unless-stopped