Questions tagged as 'docker'

2
answers

Container LAMP with Debian Stretch

I did some searching on the internet and found no instructions to mount a LAMP container using the official Debian Stretch image ( link ). The idea would be to upload a Docker container with Apache2.4, PHP7.0 and MariaDB 10.3 (for that would be...
asked by 24.09.2017 / 02:10
2
answers

Update OS packages from a database container

I am redoing a Zabbix server here in the company, where I will upgrade from version 3.2 to 4.0 I'm thinking of using docker to make life easier, since in DockerHub I have images for Zabbix-Server, for Zabbix-Web, and I intend to use the offic...
asked by 12.12.2018 / 17:03
0
answers

Problems running Java Application in Docker

I have the following problem. I created a container with 1GB of memory and 16GB of Swap, I'm using Oracle JDK 8 Update 171 (64bit) with Debian 9. Set the Java_OPTS parameters for the JVM to read CGROUPS. The container is rising correctl...
asked by 06.08.2018 / 22:20
1
answer

Change default address used by Docker (172.17.0.1)

I would like to change (or remove) the address 172.17.0.1 used by docker networks, can you do that? I use docker for php development and I have a remote repository (git) configured through a VPN using the IP range 172.17.X.X. Whenever my c...
asked by 14.09.2018 / 14:00
0
answers

WP-CLI and Drush in Isolated Docker Containers

I'm starting to use Docker containers to instantiate local development environments, especially for WordPress and Drupal. Two tools that I use a lot in my workflow are wp-cli and drush. Following the Docker philosophy, I leave the database in...
asked by 26.08.2016 / 17:37
2
answers

Status Exited (0) after a docker-compose up command

I'm starting to work with Docker now, I understand the concepts of images and containers but I have a problem to run the command: $ docker-compose up I created a Dockerfile in the root of my project to create a container with the mai...
asked by 18.06.2018 / 16:07
2
answers

Docker remote management

I'm developing a solution (application) that basically creates a WebService for communication between an Android app and a database. My question now is how I will manage and distribute this solution. From what I've studied so far, Docker will be...
asked by 03.08.2016 / 23:25
2
answers

How to edit my JS files inside the Docker container using Sublime 3?

I'm using Docker 1.7 on MAC OSX and created a container with an Apache and a WEB application. I would like to edit JS fonts using Sublime Text 3. How can I do this?     
asked by 18.07.2015 / 00:55
1
answer

Docker always checks if the local image is the same or lower version than the official Docker Hub repository?

When raising a new application, you do not have the image locally, so Docker will get the image that is the base of the container. Once the image has been downloaded, Docker goes up the container. The application is there running. But if there i...
asked by 03.05.2018 / 16:12
1
answer

Docker compose does not work using proxy

I am creating a docker-compose file to upload a multi-node system. To start testing, I created only one service in this file docker-compose.yml : version: '3' networks: production-network: driver: bridge services: node1:...
asked by 01.10.2018 / 17:39