Skip to content

Instantly share code, notes, and snippets.

@cdevroe
Created March 30, 2021 14:22
Show Gist options
  • Save cdevroe/c5e493f6e288a145d074a98d1791e31b to your computer and use it in GitHub Desktop.
Save cdevroe/c5e493f6e288a145d074a98d1791e31b to your computer and use it in GitHub Desktop.
Simple Apache server with Docker Compose
version: '3.3'
services:
httpd:
image: httpd:2.4
volumes:
- /YOUR/LOCAL/FILE/SYSTEM/DIRECTORY:/usr/local/apache2/htdocs/
ports:
- 8080:80
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment