File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ # Microservice Template with Docker
2+
3+ This is a small project where the following is combined in order to create a usable microservice:
4+
5+ - [ RestAPI (Python + Flask)] ( https://github.com/pallets/flask )
6+ - [ Postgres Database] ( https://www.postgresql.org/ )
7+ - [ Nginx] ( https://www.nginx.com/ )
8+ - [ Postgres db explorer] ( http://sosedoff.github.io/pgweb/ ) (This can be removed, it is only used for testing)
9+
10+ ## Test it
11+
12+ - Clone and start it:
13+
14+ ``` sh
15+ git clone https://github.com/gaborvecsei/Dockerized-Microservice-Template.git
16+
17+ sudo ./start.sh
18+ ```
19+
20+ - Stop it:
21+
22+ ``` sh
23+ sudo docker-compose down
24+ ```
25+
26+ - See the container logs:
27+
28+ ``` sh
29+ sudo docker-compose logs -f
30+ ```
31+
32+ ## TODO
33+
34+ - [ ] Log In
35+ - [ ] User Page
36+ - [ ] Registration
37+ - [ ] Billing (Buying units)
You can’t perform that action at this time.
0 commit comments