mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
9 lines
232 B
Docker
9 lines
232 B
Docker
FROM golang:1.22-alpine
|
|
|
|
# Q: What is this?
|
|
# A: DDNS is a personal DynDNS client for DigitalOcean, see https://github.com/skibish/ddns.
|
|
|
|
RUN go install github.com/skibish/ddns@latest
|
|
|
|
CMD ["ddns", "-conf-file", "/config/ddns.yml"]
|