Сообщения

Сообщения за март, 2023

maven

  mvn dependency:tree -Dverbose -Dincludes='org.apache.lucene' find ~/.m2/ -name "*.lastUpdated" | xargs rm src:  https://stackoverflow.com/a/26974691/2910338 maven опцию --thread для параллельной сборки проекта mvn dependency:purge-local-repository mvn spring-boot:run -Dspring-boot.run.profiles=foo,bar [ERROR] After correcting the problems, you can resume the build with the command [ERROR]  mvn <args> -rf :afd-vtb-aaap-ora-calc java -jar spring boot profile https://stackoverflow.com/a/37439625/2910338   https://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven https://stackoverflow.com/questions/30207842/add-external-library-jar-to-spring-boot-jar-internal-lib https://stackoverflow.com/questions/2065928/maven-2-assembly-with-dependencies-jar-under-scope-system-not-included https://www.apache-maven.ru/ ************************************* можно выкинуть пакеты из java 11*************************          <ex

docker

start downloaded container: docker start hash or name from docker ps -a docker build ./ -t findli/ubuntu_base:18_03_2023 ************ docker-compose:     build:       context: ./frontend - контекст это директория в которой будет искаться dockerfile       dockerfile: Dockerfile равнозначно:     build:       #context: ./frontend       dockerfile: frontend/Dockerfile ************ ************ ********** error:  when docker-compose up --force-recreate --build --remove-orphans langapp-back strconv.Atoi: parsing "": invalid syntax to fix: comment existing containers in docker-compose.yaml file. replace them by something else. then docker compose up --remove-orphans then revert suspicious containers in docker-conpose file then docker compose up will work. src: https://github.com/docker/compose-cli/issues/1537#issuecomment-1284828193  ********** ********** https://stackoverflow.com/a/52084817/2910338 docker-compose down was very important as I was seeing no changes despite restarting