Replies: 1 comment
-
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Somehow, whilst tinkering around with traefik, proxys and stuff, I somehow broke my homepage. And now it only shows the bookmarks.
This is my compose.yml:
` homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
hostname: homepage
restart: on-failure # always
environment:
PUID: ${PUID}
PGID: ${PGID}
ports:
- "${HOMEPAGE_PORT}:3000"
volumes:
#- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
- ${USERDIR}/homepage/config:/app/config # Make sure your local config directory exists
- ${USERDIR}/homepage/images:/app/public/images # Imagefolder
- ${USERDIR}/homepage/icons:/app/public/icons # Iconsfolder
healthcheck:
# test: ["CMD", "homepage", "healthcheck", "--ping"]
test: "curl -sf http://localhost:4001 || exit 1"
interval: 60s
timeout: 5s
retries: 3
start_period: 5s
labels:
## WhatsUpDocker
- wud.watch=true
## Autoheal
- autoheal=true
## Deunhealth
- deunhealth.restart.on.unhealthy=true
and this is my docker.yaml:
my-docker:docker: host: dockerproxy port: 2375
W`hat should I look at?
Beta Was this translation helpful? Give feedback.
All reactions