-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker_commands
30 lines (27 loc) · 1.51 KB
/
docker_commands
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## Docker commands used to build the application
# TODO: insert the docker build command
docker build -t techtrends .
## Docker commands used to run the application
# TODO: insert the docker run command
docker run -d -p 7111:3111 techtrends
## Docker commands used to get the application logs
# TODO: insert the docker logs command
docker logs d9f37c3395a8
## Logs from the container running the TechTrends application
# TODO: paste logs from the Docker container
* Serving Flask app "app" (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
INFO:werkzeug: * Running on http://0.0.0.0:3111/ (Press CTRL+C to quit)
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:45:27] "GET / HTTP/1.1" 200 -
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:45:28] "GET /static/css/main.css HTTP/1.1" 200 -
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:45:28] "GET /favicon.ico HTTP/1.1" 404 -
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:47:10] "GET / HTTP/1.1" 200 -
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:47:10] "GET /static/css/main.css HTTP/1.1" 200 -
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:47:10] "GET /favicon.ico HTTP/1.1" 404 -
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:51:24] "GET / HTTP/1.1" 200 -
INFO:app:09/26/2021, 05:57:29 | About US page retrived
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:57:29] "GET /about HTTP/1.1" 200 -
INFO:werkzeug:172.17.0.1 - - [26/Sep/2021 05:57:31] "GET / HTTP/1.1" 200 -