30 lines
688 B
YAML
30 lines
688 B
YAML
version: '3.7'
|
|
services:
|
|
caddy:
|
|
image: iarekylew00t/caddy-cloudflare:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
# - "80:80"
|
|
- "443:443"
|
|
extra_hosts:
|
|
- 'host.docker.internal:host-gateway'
|
|
networks:
|
|
- bizmatch
|
|
volumes:
|
|
- $PWD/Caddyfile:/etc/caddy/Caddyfile
|
|
- caddy_data:/data
|
|
- caddy_config:/config
|
|
#- /home/aknuth/git/bizmatch/dist/bizmatch/browser:/srv
|
|
- /home/aknuth/git/bizmatch-project/bizmatch/dist/bizmatch/browser:/srv
|
|
environment:
|
|
- CLOUDFLARE_API_TOKEN=q1P7J3uqS96FGj_iiX2mI8y1ulTaIFrTp8tyTXhG
|
|
|
|
networks:
|
|
bizmatch:
|
|
external: true
|
|
|
|
volumes:
|
|
caddy_data:
|
|
external: true
|
|
caddy_config:
|