$ docker ps -a # show all docker containers
$ docker images -a # show all docker images
docker-compose -f src/main/docker/app.yml ps --all # show all docker containers of compose
docker-compose -f src/main/docker/app.yml rm --all # delete all docker containers of compose
The old cache cause this issue, I failed to run this command at the first time. And docker-compose already created images which I can't see from docker images. Need to check from docker-compose ps, and remove all old images with this command docker-compose rm, then rebuild again.