skip to Main Content

Selenoid Docker ssl certificates – CentOS

I am trying to add ssl certificates to my container. Is there any specific location to add these certificates for example /etc/selenoid? Because the certificates are not being recognized. Tried using the --volume command docker run --volume /etc/folder_location:/etc/selenoid When I…

VIEW QUESTION

Postgres container connection refused – Debian

Docker-compose with 2 containers. 1st is a Postgres database and 2nd is a Java Spring Boot application. For running, I use further docker-compose config file: docker-compose.yml version: "3.7" services: db-service: image: postgres restart: always volumes: - /home/ec2-user/dbdata:/var/lib/postgresql/data environment: POSTGRES_USER: postgres…

VIEW QUESTION

Redis – Laravel Sail rebuild default database

According to docs: Also, when the MySQL container is starting, it will ensure a database exists whose name matches the value of your DB_DATABASE environment variable. My .env file looks like this. DB_CONNECTION=mysql DB_HOST=mysql DB_PORT=3306 DB_DATABASE=test DB_USERNAME=root DB_PASSWORD= Yet when…

VIEW QUESTION
Back To Top
Search