Posts by Ronald Carvalho • 16 points
3 posts
-
0
votes2
answers172
viewsA: Docker conect mysql in another Docker-Compose
Try it with this: version: '3.5' services: # MYSQL db: image: mysql container_name: db_mysql command: --default-authentication-plugin=mysql_native_password environment: MYSQL_ROOT_PASSWORD: "admin"…
-
0
votes1
answer248
viewsA: Dockerfile RUN Shellscript error while running if
Try giving permission to run the file: FROM centos USER root WORKDIR /home/app COPY .* /home/app RUN apt-get update RUN apt-get -y install nodejs RUN chmod +x install.sh <<<<<<=…
-
0
votes1
answer155
viewsA: Spring boot with Docker and Mysql without Docker
You need to upload the container of your application by pointing the ip of your machine on the local network as the host of the database. Or you can climb with the parameter --net host…