27 lines
761 B
YAML
27 lines
761 B
YAML
version: '3.7'
|
|
services:
|
|
geofeed:
|
|
image: git.startmywifi.com/as1024/geofeed:latest
|
|
restart: always
|
|
volumes:
|
|
- './data:/data'
|
|
environment:
|
|
- ASPNETCORE_URLS=http://+:8080
|
|
- ConnectionString__LocalFeedCache=Data Source=/data/geofeed-cache.db
|
|
- APIKey=APIKeyHere
|
|
- NetBoxHost=netboxhosthere
|
|
caddy:
|
|
image: caddy:2
|
|
restart: always
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
- 443:443/udp
|
|
volumes:
|
|
- ./Caddyfile:/etc/caddy/Caddyfile:ro
|
|
- ./caddy-config:/config
|
|
- ./caddy-data:/data
|
|
environment:
|
|
GEOFEEDDOMAIN: "https://geofeed.exampleas.net"
|
|
EMAIL: "noc@example.com" # The email address to use for ACME registration.
|
|
LOG_FILE: "/data/access.log" |