Docker tail -f from the end

The docker way:

docker logs -f --tail 10 container_name

The host way

$(docker inspect --format='{{.LogPath}}'
# Then tail -f the file

Ref