fusion/docker-compose.yml

12 lines
191 B
YAML
Raw Permalink Normal View History

2024-06-02 15:11:56 +02:00
version: "3.8"
services:
web:
image: "httpd"
container_name: "fusion"
2024-06-04 12:15:47 +02:00
restart: unless-stopped
2024-06-02 15:11:56 +02:00
ports:
2024-06-02 15:49:23 +02:00
- "6911:80"
2024-06-02 15:11:56 +02:00
volumes:
- ".:/usr/local/apache2/htdocs/"