mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
15 lines
241 B
YAML
15 lines
241 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
caddy:
|
|
container_name: caddy
|
|
image: caddy:latest
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- ./Caddyfile.prod:/etc/caddy/Caddyfile
|
|
restart: unless_stopped
|
|
networks:
|
|
- caddy
|