diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-21 21:55:28 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-21 21:55:28 -0700 |
commit | 4f79cdfcc1ee65b2a1bef717f49880f659df8300 (patch) | |
tree | ca9df74430895b87219117ab7d2b2e3b0f6d0f55 | |
parent | 28ecda295b0e0a398a23fb1d3cf947d59d2c7e9a (diff) | |
download | backup-notify-4f79cdfcc1ee65b2a1bef717f49880f659df8300.tar.gz backup-notify-4f79cdfcc1ee65b2a1bef717f49880f659df8300.zip |
rename binary
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,8 +7,8 @@ RUN go mod download COPY . . -RUN go build -o /app/backupnotify +RUN go build -o /app/backup-notify EXPOSE 8080 -CMD ["/app/nackupnotify", "--server", "--migrate", "--port", "8080", "--template-path", "/app/templates", "--database-path", "/app/db/nackupnotify.db", "--static-path", "/app/static", "--scheduler", "--ntfy-endpoint", "https://ntfy.internal.simponic.xyz", "--ntfy-topics", "server-backups", "--ntfy-alert-topics", "alerts"] +CMD ["/app/backup-notify", "--server", "--migrate", "--port", "8080", "--template-path", "/app/templates", "--database-path", "/app/db/nackupnotify.db", "--static-path", "/app/static", "--scheduler", "--ntfy-endpoint", "https://ntfy.internal.simponic.xyz", "--ntfy-topics", "server-backups", "--ntfy-alert-topics", "alerts"] |