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

https://github.com/eliyas5044/docker

Docker Management System.
https://github.com/eliyas5044/docker

Last synced: 5 months ago
JSON representation

Docker Management System.

Awesome Lists containing this project

README

          

# Docker Environment

## Setup

> copy environment file
```bash
cp .env.example .env
```

> copy docker-compose file
```bash
cp docker-compose.yml.example docker-compose.yml
```
## Build

> build services
```bash
docker-compose build nginx

# build without cache
docker-compose build --no-cache nginx
```
## Start Service

> start service, i.e nginx
```bash
docker-compose up -d nginx
```