An open API service indexing awesome lists of open source software.

https://github.com/sohelamin/my-docker

My Docker Environment
https://github.com/sohelamin/my-docker

docker docker-environment

Last synced: 6 months ago
JSON representation

My Docker Environment

Awesome Lists containing this project

README

          

# My Docker Environment

## Included
- php
- nginx
- mariadb
- redis

## Usage
// Up the containers
docker-compose up -d
// Down the containers
docker-compose down

// Shell into a container
docker exec -it mydocker_app_1 bash

// Get the IP Address of a contaner
docker inspect mydocker_nginx_1 | grep \"IPAddress

## Extra hosts
```
app:
...
...
extra_hosts:
- "mysite.dev:172.18.0.6"
```