Hello Team
My tubesync installation broke the file permissions after 0.16.x update.
Here's my docker compose unit:
tubesync:
image: ghcr.io/meeb/tubesync:latest
container_name: tubesync
hostname: tubesync
depends_on:
- mysql
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- DATABASE_CONNECTION=mysql://root:${MYSQL_PASS}@${MYSQL_HOST}:{MYSQL_PORT}/tubesync
volumes:
- ./tubesync:/config
- ${MOUNT_POINT}/music/youtube:/<mount_path>
- type: bind
source: ${RAMDISK}/tubesync
target: /tmp
bind:
create_host_path: true
ports:
- "4848:4848"
The files added in the /<mount_path> after the update seems to have permissions of 644 instead of 755 that I expected (and was the norm before). Not sure what changed, but will revert to 0.15 till this is figured out.
Hello Team
My tubesync installation broke the file permissions after 0.16.x update.
Here's my docker compose unit:
The files added in the
/<mount_path>after the update seems to have permissions of644instead of755that I expected (and was the norm before). Not sure what changed, but will revert to0.15till this is figured out.