Questions tagged as 'docker'

1
answer

Docker compose auto start on restart

I need to launch a docker-compose on an ubuntu-server every time it is restarted. I tried to create a crontab like this: @reboot docker-compose -f /home/user/docker-compose/docker-compose.yml up -d But when I restart it, this has not wor...
asked by 13.01.2017 / 19:56
1
answer

Is it possible to use docker in windows without owning VT-x / AMD-v?

Good day community of StackOverflow! I have managed to install docker on a machine that is x64 and has Windows 7 Ultimate, however, as a docker is a program that has official support for x64 bits and also uses virtual box I was reading that i...
asked by 30.04.2018 / 01:10
1
answer

How to use tensorflow from a docker container in a container with django? Link Containers?

I need to link two containers, my main container contains django and the secondary tensorflow, I am creating the two containers with docker-compose, both are created correctly, but I need to enter the container with django and when running pytho...
asked by 06.08.2018 / 20:37
1
answer

Docker does not run my container

I am generating a container for my application with the following dockerfile FROM django ADD ./cryptoassistant /cryptoassistant WORKDIR /cryptoassistant RUN ["chmod", "+x", "/cryptoassistant/manage.py"] RUN ["pip", "install", "--upgrade"...
asked by 21.08.2018 / 19:21
2
answers

error with docker installed on a 32bit architecture machine

Hello everyone I would like to know what this error is due Error response from daemon: Cannot start container ffb: [8] System error: exec format error FATA[0000] Error: failed to start one or more containers this error is generated when wan...
asked by 14.05.2016 / 22:55
3
answers

Image docker running through port 80

A couple of days ago that I'm fiddling with Docker, I tell you my intention. Create a Dockerfile with: LAMP Wordpress Nodejs npm ionic-framework cordova And that from port 80 using "localhost" can access the wordpress. I h...
asked by 08.11.2016 / 16:27
2
answers

Change user in docker with noVNC

We are creating a docker image that starts from an image that contains the noVNC installed in root and whenever we boot we are in the root user Can it be changed so that it is another user who starts the container and therefore the noVNC?   ...
asked by 08.09.2016 / 15:48
0
answers

docker + vmworkstation: Ip not found when creating container

Good day community of StackOverflow! I installed docker on Windows 7 x64 bits by using chocolatey. The installation has been configured to use docker with the vmworkstation driver so that to create a container I use in the command console:...
asked by 30.04.2018 / 01:54
0
answers

docker-compose ssh

I'm working on creating a .Dockerfile a docker-compose.ymal and an a.sh file that contains environment variables and a tail -f /dev/null . I want to create two containers that communicate with each other. It has to have openssh and git,...
asked by 30.07.2018 / 12:58
1
answer

How to install PHP modules with Dockerfile for instances of ElasticBeanstalk AWS

I need to install the mysqli and zip extensions in a Docker image, use the Dockerfile file to run the installation in my instances but with no results. this is my Docker file file: FROM php:5.6-fpm RUN docker-php-ext-install mysqli mysqlnd...
asked by 12.09.2016 / 18:25