Tandoor Version
2.5.3
Setup
Docker / Docker-Compose
Reverse Proxy
Traefik
Other
No response
Bug description
When i updated the containers, everything was reset back to factory settings, and i was prompted to create a first admin user again. I can see that there are still some files left in each of the three directories (ZFS File system) and the containers both run as root, so i don't really think it's a permission problem.
I've attached the docker log of the main container, where you can see hundreds of lines like Deleting 'admin/js/vendor/select2/i18n/pt.js' without an explanation.
Here's my docker compose file. Maybe I configured something wrong.
services:
tandoor-db:
container_name: tandoor-db
image: postgres:16-alpine
restart: unless-stopped
volumes:
- ${DATA_PATH}/db:/var/lib/postgresql/data
env_file:
- stack.env
tandoor:
container_name: tandoor
image: vabene1111/recipes
restart: unless-stopped
env_file:
- stack.env
ports:
- "${IP}:${PORT}:80"
volumes:
- ${DATA_PATH}/static:/opt/recipes/staticfiles
- ${DATA_PATH}/media:/opt/recipes/mediafiles
depends_on:
- tandoor-db
Relevant logs
Too long for the field, so i put it in a pastebin for you here:
https://pastebin.com/euWHqkN4
Tandoor Version
2.5.3
Setup
Docker / Docker-Compose
Reverse Proxy
Traefik
Other
No response
Bug description
When i updated the containers, everything was reset back to factory settings, and i was prompted to create a first admin user again. I can see that there are still some files left in each of the three directories (ZFS File system) and the containers both run as root, so i don't really think it's a permission problem.
I've attached the docker log of the main container, where you can see hundreds of lines like
Deleting 'admin/js/vendor/select2/i18n/pt.js'without an explanation.Here's my docker compose file. Maybe I configured something wrong.
Relevant logs