20 lines
427 B
YAML
20 lines
427 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
tinyhome:
|
||
|
image: httpd
|
||
|
container_name: tinyhome
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
- web
|
||
|
volumes:
|
||
|
- ./htdocs:/usr/local/apache2/htdocs
|
||
|
labels:
|
||
|
- traefik.http.routers.tinyhome.rule=Host(`tinyhome.jafner.net`)
|
||
|
- traefik.http.routers.tinyhome.tls=true
|
||
|
- traefik.http.routers.tinyhome.tls.certresolver=lets-encrypt
|
||
|
|
||
|
networks:
|
||
|
web:
|
||
|
external: true
|
||
|
|