mirror of
https://github.com/docker/compose.git
synced 2025-07-29 00:24:12 +02:00
PR #490 Provides the ability to pull from an insecure registry by passing --allow-insecure-ssl. This commit extends the work done in #490 and adds the ability to pass --allow-insecure-ssl to the up and run commands which will attempt to pull dependent images if they do not exist. Signed-off-by: Tyler Rivera <riverat2@email.chop.edu>
Fig
Fast, isolated development environments using Docker.
Define your app's environment with Docker so it can be reproduced anywhere:
FROM python:2.7
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD python app.py
Define the services that make up your app so they can be run together in an isolated environment:
web:
build: .
links:
- db
ports:
- "8000:8000"
- "49100:22"
db:
image: postgres
(No more installing Postgres on your laptop!)
Then type fig up
, and Fig will start and run your entire app:
There are commands to:
- start, stop and rebuild services
- view the status of running services
- tail running services' log output
- run a one-off command on a service
Installation and documentation
Full documentation is available on Fig's website.
Description
Languages
Go
96.9%
Dockerfile
2.3%
Makefile
0.5%
HCL
0.2%