Hey!
Basically I am running duplicacy using docker with this image: image: Package duplicacy · GitHub
Some time ago I noticed that I was no longer seeing stats in the dashboard:
I checked my logs and I did not see anything wrong here.
This is how I run it:
duplicacy:
<<: [*common-restart-policy]
environment:
<<: [*common-env-vars]
PATH_TO_SCRIPTS: /personal-scripts
PUSHOVER_BACKUPS_APP_TOKEN: ${PUSHOVER_BACKUPS_APP_TOKEN}
PUSHOVER_USER_KEY: ${PUSHOVER_USER_KEY}
PUSHOVER_API_URL: ${PUSHOVER_API_URL}
container_name: duplicacy
hostname: duplicacy
image: ghcr.io/hotio/duplicacy:release-1.8.0
ports:
- '3875:3875'
volumes:
- ${ROOT_DIR}/${CONFIG_DIR}/duplicacy/cache:/cache
- ${ROOT_DIR}/${CONFIG_DIR}/duplicacy/logs:/logs
- ${ROOT_DIR}/${CONFIG_DIR}/duplicacy:/config
- /media/rafapirotto/local:/local
- ${ROOT_DIR}/${CONFIG_DIR}:/source
- ${ROOT_DIR}/${HOME_LAB_DIR}/${SCRIPTS_DIR}:/personal-scripts:ro
healthcheck:
<<: [*healthcheck-vars]
test: curl --fail http://localhost:3875 || exit 1
labels:
<<: [*restart-unhealthy]
wud.tag.include: ^release-\d+\.\d+\.\d+$$
I know there is a similar post but I was not able to understand how to fix it.
These are some of my logs just in case:
_ _ _
| |__ ___ | |_(_) ___
| '_ \ / _ \| __| |/ _ \
| | | | (_) | |_| | (_) |
|_| |_|\___/ \__|_|\___/
Donate: https://hotio.dev/donate
Documentation: https://hotio.dev/containers/duplicacy
Support: https://hotio.dev/discord
Image: hotio/duplicacy:release
Revision: 10b532e (behind, by 25)
Version: 1.8.0
OS: Linux 6.2.0-34-generic x86_64
----------------------------------------------------------------------
ENVIRONMENT BASE
----------------------------------------------------------------------
PUID=1000
PGID=1000
UMASK=002
PRIVOXY_ENABLED=false
UNBOUND_ENABLED=false
VPN_ENABLED=false
----------------------------------------------------------------------
Executing usermod...
usermod: no changes
Applying permissions to /config
s6-rc: info: service init-setup successfully started
s6-rc: info: service init-setup-app: starting
----------------------------------------------------------------------
ENVIRONMENT APP
----------------------------------------------------------------------
WEBUI_PORTS=3875/tcp,3875/udp
----------------------------------------------------------------------
Applying permissions to /cache
Applying permissions to /logs
s6-rc: info: service init-setup-app successfully started
s6-rc: info: service init-wireguard: starting
s6-rc: info: service init-wireguard successfully started
s6-rc: info: service service-duplicacy: starting
s6-rc: info: service service-duplicacy successfully started
s6-rc: info: service legacy-services: starting
s6-rc: info: service legacy-services successfully started
Log directory set to /logs
Duplicacy Web Edition 1.8.0 (redacted)
Starting the web server at http://[::]:3875
Thanks!



