Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/plh97/docker-test
prepare for DevOps
https://github.com/plh97/docker-test
dcoker-compose devops
Last synced: 29 days ago
JSON representation
prepare for DevOps
- Host: GitHub
- URL: https://github.com/plh97/docker-test
- Owner: plh97
- Created: 2019-10-09T15:13:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-12T04:39:12.000Z (about 2 years ago)
- Last Synced: 2023-03-18T10:25:05.290Z (almost 2 years 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
![image](./Architecture.png)
# 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
```