https://github.com/eliyas5044/docker
Docker Management System.
https://github.com/eliyas5044/docker
Last synced: 5 months ago
JSON representation
Docker Management System.
- Host: GitHub
- URL: https://github.com/eliyas5044/docker
- Owner: eliyas5044
- Created: 2020-07-05T12:52:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-24T15:56:14.000Z (about 5 years ago)
- Last Synced: 2025-03-03T19:54:05.583Z (10 months ago)
- Language: Dockerfile
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```