mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-17 16:49:04 +00:00
10 lines
255 B
Docker
10 lines
255 B
Docker
FROM golang:1.22-alpine
|
|
|
|
ENV DO_NOT_TRACK=true
|
|
|
|
# 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"]
|