skip to Main Content

Docker how to clear files on read only so I can change it directly from my computer and not container? – Phpmyadmin

I created a docker-compose.yml file with the code below : version: "3.8" services: db: image: mysql:latest command: --default-authentication-plugin=mysql_native_password container_name: docker_database restart: always volumes: - db-data:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=root networks: - dev phpmyadmin: image: phpmyadmin:latest container_name: docker_phpmyadmin restart: always depends_on: -…

VIEW QUESTION

Redis – Extending docker image

I want to extend the existing redis:6.0-alpine image from docker-hub and want to add my configuration file in the container. For that I've created this dockerfile FROM redis:6.0-alpine WORKDIR . COPY redis.master.conf ./config/redis.conf but when building a container from this…

VIEW QUESTION
Back To Top
Search