https://github.com/plh97/docker-test
prepare for DevOps
https://github.com/plh97/docker-test
dcoker-compose devops
Last synced: 2 months ago
JSON representation
prepare for DevOps
- Host: GitHub
- URL: https://github.com/plh97/docker-test
- Owner: plh97
- Created: 2019-10-09T15:13:16.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-12T04:39:12.000Z (almost 3 years ago)
- Last Synced: 2025-07-25T18:25:00.139Z (2 months ago)
- Topics: dcoker-compose, devops
- Language: Python
- Homepage: http://35.247.142.242/
- Size: 15.5 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# start command
`docker-compose up`
# Abstract Architecture

# File Architecture
```bash
.
├── Architecture.png
├── README.md
├── backend
│ ├── __pycache__
│ │ └── app.cpython-37.pyc
│ ├── app.py
│ ├── dockerfile
│ └── requirements.txt
├── docker-compose.yml
├── frontend
│ ├── dist
│ │ ├── favicon.26242483.ico
│ │ ├── frontend.9ad09f98.css
│ │ ├── frontend.9ad09f98.css.map
│ │ ├── frontend.9ad09f98.js
│ │ ├── frontend.9ad09f98.js.map
│ │ ├── frontend.e31bb0bc.js
│ │ ├── frontend.e31bb0bc.js.map
│ │ └── index.html
│ ├── dockerfile
│ ├── favicon.ico
│ ├── index.css
│ ├── index.html
│ ├── index.js
│ ├── package-lock.json
│ ├── package.json
│ └── src
├── mongodb
├── nginx
│ ├── dockerfile
│ ├── nginx.conf
│ └── sites-enabled
│ └── default
├── redis
└── run.sh9 directories, 26 files
```