Try resizing with this command:
xrandr -s 1600x1200
Or find the vncserver startup line and add a geometry:
vncserver -geometry 1600x1200
Actually, you can put the desired resolution into your docker-compose file. I run at 2560x1440 and it's great.
add this under
- environment (change the numbers to your desired values)
- DISPLAY_WIDTH=2560
- DISPLAY_HEIGHT=1440
Btw, I got all this info from Max when I set up my NAS. He's a genius!
Here's my personal docker-compose file
version: '3'
services:
jrivermc:
image: shiomax/jrivermc:latest
restart: always
container_name: jrivermc
network_mode: host
environment:
- VNC_PASSWORD=<your chosen PW>
- VNC_LISTEN=ALLOW_ALL
- USER_ID-<get this value from your NAS>
- GROUP_ID=<get this value from your NAS>
- DISPLAY_WIDTH=2560
- DISPLAY_HEIGHT=1440
- TZ=America/New_York <change this to your location>
volumes:
- /volume1/docker/MC32/config:/config:rw
- /volume1/music:/data/music:rw
- /volume1/docker/MC32/data/Library:/data/Library:rw
EDITS: spelling