-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker_commands
23 lines (20 loc) · 983 Bytes
/
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
## Docker commands used to build the application
# TODO: insert the docker build command
docker build -t techtrends:latest .
## Docker commands used to run the application
# TODO: insert the docker run command
docker run -p 7111:3111 --name -d techtrends techtrends:latest
## Docker commands used to get the application logs
# TODO: insert the docker logs command
docker logs techtrends
## 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
* Running on http://0.0.0.0:3111/ (Press CTRL+C to quit)
172.17.0.1 - - [19/Sep/2021 19:49:40] "GET / HTTP/1.1" 200 -
172.17.0.1 - - [19/Sep/2021 19:49:40] "GET /static/css/main.css HTTP/1.1" 200 -
172.17.0.1 - - [19/Sep/2021 19:49:40] "GET /favicon.ico HTTP/1.1" 404 -