fig Questions

7

Solved

I created a postgres container using the tutorial on the fig website. I named the container db. The container is running and my app connects to it fine. I tried to run the command fig run db psql w...
Sita asked 28/12, 2014 at 3:53

7

Solved

I'm using Docker with fig to build NodeJS dev-env. While I using nodemon to watch the server.js, changing server.js won't restart the server. CMD ["nodemon", "/nodeapp/server.js"] But while I c...
Lowder asked 1/12, 2014 at 10:45

4

Solved

I'm in the process of attempting to containerize our development environment with docker. This includes a mix of Google Appengine projects as well as services that are being eventually hosted in Go...
Ariminum asked 24/3, 2015 at 16:59

20

I'm following the fig guide to using docker with a python application, but when docker gets up to the command RUN pip install -r requirements.txt I get the following error message: Step 3 : RUN...
Peppel asked 23/2, 2015 at 6:41

4

Solved

mem_limit is supported by docker-compose? How can I test it? I have a following docker-compose.yml repository: image: myregistry/my_nginx_image mem_limit: 60m volumes: - /etc/localtime:/etc/l...
Kimikokimitri asked 3/3, 2015 at 16:58

5

Solved

Is it possible to access an docker service from an external device? I built the service via fig and exposed the port 3000. I use fig with docker-osx, so docker is running inside a virtualbox. No...
Gabriel asked 15/8, 2014 at 13:12

4

Solved

I'm using docker-compose and I'd like to use different Dockerfiles for different services' build steps. The docs seem to suggest to place different Dockerfiles in different directories, but I'd lik...
Damiandamiani asked 23/4, 2015 at 23:7

2

Solved

I'm having a docker compose setup of a database container, an application container and one container which pre-loads the database with necessary data. I want to start all of the containers togeth...
Feune asked 12/6, 2015 at 20:40

3

I am trying to use docker-compose up the way you can use docker run [APP_CONTAINER_NAME] [APP_OPTIONS].
Epiglottis asked 19/4, 2015 at 11:57

1

Solved

I'm writing a Dockerfile which needs to run multiple commands as part of the CMD instruction and I thought the right way to do this would be to run a shell script with the main daemon executed via ...
Sergiosergipe asked 21/1, 2015 at 16:35

2

Solved

I'm working on creating some docker images to be used for testing on dev machines. I plan to build one for our main app as well as one for each of our external dependencies (postgres, elasticsearch...
Approximation asked 23/1, 2015 at 18:7

3

Solved

For one of my home projects I decided to use docker containers and fig for orchestration (first time using those tools). Here is my fig.yaml: rabbitmq: image: dockerfile/rabbitmq:latest mongodb:...
Kidwell asked 27/12, 2014 at 19:41

2

What is the proper way of setting a mongodb replica set using docker and fig? I was trying to follow official mongodb tutorials to create a fig.yml file with some replica sets but always got block...
Neolatin asked 12/12, 2014 at 17:50

3

Solved

I have a development setup where I need multiple containers running different services, and I'm trying to use Fig to achieve this. Everything else works fine, but one of these services is a Play Fr...
Stans asked 11/11, 2014 at 12:57

2

Solved

I have the following Dockerfile for my container: FROM centos:centos7 # Install software RUN yum -y update && yum clean all RUN yum install -y tar gzip wget && yum clean all # In...
Benitabenites asked 15/2, 2015 at 14:16

1

Solved

My app is running inside a docker image (My development team never install software in their machines, only the docker images have the dependencies). I Need to debug something using pycharm debugg...
Monochrome asked 14/4, 2015 at 18:57

2

Solved

From my understanding of docker compose / fig, creating a link between two services/images is one main reason if you do not want to exposes ports to others. like here db does not expose any ports ...
Aesthesia asked 10/4, 2015 at 14:40

1

I am trying to configure a nodejs container to connect to a mysql database. My code looks like this: var pool = mysql.createPool({ host : 'mysql', port : '3306', user : 'root', password : '.....
Meyer asked 9/1, 2015 at 20:46

2

Solved

I'm trying to set up a Node.js app on Docker multiple containers. My app is currently on one Ubuntu DO droplet & uses: Node.js (express 4) mysql for the app database redis for a key-value st...
Hepburn asked 27/2, 2015 at 12:51

1

Solved

I was thinking about the micro services architecture and wondering if folks have a good best practice for development environments. My working assumption is that each micro service will live in it...
Duque asked 11/1, 2015 at 19:14

2

Solved

I have my app inside a container and it's reading environment variables for passwords and API keys to access services. If I run the app on my machine (not inside docker), I just export SERVICE_KEY=...
Sternwheeler asked 18/12, 2014 at 13:36

1

Solved

I'm trying to set up a docker / fig Mesos cluster. I'm new to fig and Docker. Docker has plenty of documentation, but I find myself struggling to understand how to work with fig. Here's my fig.yam...
Brookhouse asked 9/8, 2014 at 9:42

1

I have just started to learn about Docker and consider replacing my VM-based infrastructure by a Docker infrastructure. I am wondering about how to deal with dependencies between containers and how...
Foreworn asked 30/7, 2014 at 2:4
1

© 2022 - 2024 — McMap. All rights reserved.