All Questions
Tagged with provisioning docker
20 questions
1
vote
1
answer
252
views
Grafana dashboard provisioning on a Docker container
I've been trying to provision a dashboard on a Docker hosted Grafana server. My repository is set up as follows:
Docker
/dashboards
dashboard.JSON
dashboard.yaml
datasource.yaml
(some other files ...
0
votes
2
answers
986
views
Can't provision Grafana dashboard with default permissions
I'm facing some problems when I'm trying to provision open source grafana dashboards running on docker container.
Dashboards are visible and working correctly, but for some reason they only have ...
0
votes
0
answers
86
views
Setup one docker container with ansible to provision another
Is it possible to setup one docker image which installs ansible which then allows for the provisioning of a second docker container? I would've thought this was the way it was done for testing ansible ...
2
votes
2
answers
2k
views
Best way for Docker post run provisioning
I am quite new to Docker, and I am trying to find which is the best way for Docker provisioning after my container is up.
We use the docker-compose file to make our container up and our compose file ...
5
votes
1
answer
2k
views
dockerfile not updating container
I'm working with an app using docker (i'm not super familiar) and I need to add 2 new PHP extensions. I have changed the Dockerfile on an existing image as follows:
FROM php:7.2-fpm
RUN apt-get ...
3
votes
0
answers
1k
views
Configure, extend Grafana Docker container
I want to use Grafana as a dashboard for time series data from a Prometheus DB. To this end, I'd like to deploy it as Docker container that connects to the Prometheus container.
Instead of ...
2
votes
1
answer
1k
views
Docker openedx make dev.provision fails
I was trying to deploy the docker based devstack on my local machine. I followed the official installation guide found here: https://github.com/edx/devstack. I went through most of the processes ...
33
votes
1
answer
32k
views
docker-compose: how to see file-changes instantly (when developing)
I am new to docker, so this may seem very basic to you, anyway - its freaking me out at the moment.
I decided to develop a new web-project ontop of containers, of course i thought about docker. After ...
5
votes
1
answer
2k
views
Ansible docker_container 'no Host in request URL', docker pull works correctly
I'm trying to provision my infrastructure on AWS using Ansible playbooks. I have the instance, and am able to provision docker-engine, docker-py, etc. and, I swear, yesterday this worked correctly and ...
1
vote
0
answers
27
views
Vagrant would not provision docker
My vagrant configuration does not even start to provision docker and reports no errors at all. Could somebody tell me what's wrong with it? I tried to tear down the machine and bring it up again as ...
12
votes
4
answers
21k
views
Keep container alive and linked using docker-compose
I want to use docker-compose to compose together php and several databases (orientdb, neo4j, etc). Then get into the php container and use the shell to execute commands.
Individually, all of my ...
3
votes
1
answer
1k
views
What are the benefits of provisioning a Docker container with Ansible instead of a Dockerfile?
I am currently researching on two alternative approaches to provision Docker containers. Containers are currently managed with Ansible.
Approach 1: write a Dockerfile
Normally I would write a ...
5
votes
1
answer
86
views
azk - How to increase a VM memory in azk?
I am trying to increase the memory of VM into AZK. Is there some enviroment variable for do that? Can someone help me please?
azk (http://azk.io/)
6
votes
1
answer
5k
views
Docker compose in production?
I plan to use docker to build my dev and production environment. I build Django based app.
On dev I use docker-compose to mange all local containers. It's a nice and convenient solution. I run Django,...
2
votes
2
answers
4k
views
Is there a way to replicate pwd in a volume mount for docker in a boot2docker context?
So currently I can do: docker -v .:/usr/src/app or even specify it in my docker-compose.yml:
web:
volumes:
- .:/usr/src/app
But when I attempt to define this in my Dockerfile:
VOLUME .:/usr/...
4
votes
4
answers
1k
views
how can I login to docker hub via Vagrant docker provisioner
I've read this documentation
I have a question what is the correct way to login via vagrant to docker hub?
config.vm.provision "docker" do |d|
d.login <- doesn't exist
d.username <- ...
25
votes
1
answer
21k
views
How to convert a Vagrant box to a Docker image
I saw that it's possible to convert a Docker image into a Vagrant box.
Is there a way to convert a Vagrant box into a Docker image?
0
votes
1
answer
120
views
Docker: listen for .sql changes and re-provision database
I'm looking for a design pattern to "listen" for file changes in a directory (they are all .sql files with a Makefile) and execute a command if any change.
In my repository I have three types of ...
1
vote
1
answer
154
views
Octohost with knife solo on bare metal? (UserError: Vagrant not installed)
I want do deploy octohost on a bare metal server. As far as I understand so far knife solo is intended to use ssh to do the chef provisioning direct on a server?
But, when I follow the second step, I ...
0
votes
1
answer
2k
views
Strange Vagrant error with Docker and shell provisioners
I have the following Vagrantfile:
VAGRANTFILE_API_VERSION = "2"
$script = <<SCRIPT
apt-get install -y mongodb
mongo dummydb -u admin -p admin --eval "db.addUser('dummyuser', 'dummypass')"
...