Hey, is your docker image really updated? Because when I look at dockerhub I see that last update happened 4 years ago:
Also the app shows the still same version to me:
Found out about that while testing dark mode.. couldnt find the button and it was still in the white mode. Thanks!
My compose.yml:
services:
pastebin:
container_name: general.pastebin.50113
image: mkaczanowski/pastebin:latest
restart: always
command: --address 0.0.0.0 --port 8000 --uri=https://pbin.example.com
#network_mode: host
ports:
- 50113:8000
volumes:
- $PWD/config/pastebin.db:/pastebin.db:rw
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
labels:
# AUTOUPDATE
- com.ouroboros.enable=true
networks:
default:
name: general.pastebin
Hey, is your docker image really updated? Because when I look at dockerhub I see that last update happened 4 years ago:
Also the app shows the still same version to me:
Found out about that while testing dark mode.. couldnt find the button and it was still in the white mode. Thanks!
My compose.yml: