I can’t seem to get MySQL data to persist if I run $ docker-compose down with the following .yml version: '2' services: # other services data: container_name: flask_data image:...
I am using RUN instruction within a Dockerfile to install a rpm RUN yum -y install samplerpm-2.3 However, I want to pass the value “2.3” as an argument. My...
I couldn’t figure out what the difference between those. docker-compose up docker-compose up --build docker-compose build --no-cache Is there any command for upwithout cache? 1 Answer 1
I got some docker containers running on AWS EC2, the /var/lib/docker/overlay2 folder grows very fast in disk size. I’m wondering if it is safe to delete its content? or...
I use this image: dperson/samba The image is defining it’s own entrypoint and I do not want to override it. I need to pass arguments to the entrypoint, easy...
I installed docker-machine 0.1.0 and docker-compose 1.1.0 on Mac OS 10.8.5.Docker-machine is running normally and able to connect by docker-machine ssh. $ docker-machine ls NAME ACTIVE DRIVER STATE URL...
I have an app with the following services: web/ – holds and runs a python 3 flask web server on port 5000. Uses sqlite3. worker/ – has an index.js...
I have a development environment I’m dockerizing and I would like the ability to livereload my changes without having to rebuild docker images. I’m using docker compose because redis...
I have a directory apkmirror-scraper-compose with the following structure: . ├── docker-compose.yml ├── privoxy │  ├── config │  └── Dockerfile ├── scraper │  ├── Dockerfile │  ├── newnym.py │  ...
I would like to be able to use env variables inside docker-compose.yml, with values passed in at the time of docker-compose up. This is the example. I am doing...