mirror of
https://github.com/driftywinds/driftywinds.git
synced 2025-12-18 18:23:16 +00:00
11 lines
201 B
YAML
11 lines
201 B
YAML
version: '3.9'
|
|
services:
|
|
apache:
|
|
image: httpd:latest
|
|
container_name: apache
|
|
ports:
|
|
- '80:80'
|
|
volumes:
|
|
- ./website:/usr/local/apache2/htdocs
|
|
# external caddy handles SSL certs
|