changing from https to http (#19053)

* changing from https to http

Changing from https to http, as normally a certificate wont exist.

* Changing one more, https to http

* Changing one more, https to http

* Changing one more, https to http
This commit is contained in:
Newton Lomar 2024-01-07 15:04:13 -03:00 committed by GitHub
parent 48b3eb2672
commit aee0cc5226
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -72,7 +72,7 @@ $ docker compose up -d
## Step 4: Develop the application
Now, you can take advantage of the containers environment while you develop the application on your local system. Any changes you make to the application on your local system are reflected in the container. In your local directory, open `app/views/todos.ejs` in an code or text editor, update the `Enter your task` string, and save the file. Visit or refresh [localhost:3001](https://localhost:3001) to view the changes.
Now, you can take advantage of the containers environment while you develop the application on your local system. Any changes you make to the application on your local system are reflected in the container. In your local directory, open `app/views/todos.ejs` in an code or text editor, update the `Enter your task` string, and save the file. Visit or refresh [localhost:3001](http://localhost:3001) to view the changes.
## Summary

View File

@ -61,9 +61,9 @@ In the **Containers** tab of Docker Desktop, you should now have an application
To view the frontend:
1. In Docker Desktop, expand the application stack in **Containers**.
2. Select the link to port **3000** in the **Port(s)** column or open [https://localhost:3000](https://localhost:3000).
2. Select the link to port **3000** in the **Port(s)** column or open [http://localhost:3000](http://localhost:3000).
Add some todo tasks in the frontend, and then open [https://localhost:3000](https://localhost:3000) in a new browser tab. Notice that the tasks are still visible.
Add some todo tasks in the frontend, and then open [http://localhost:3000](http://localhost:3000) in a new browser tab. Notice that the tasks are still visible.
## Step 5: Develop in your containers
@ -80,7 +80,7 @@ To run Compose Watch and see the real-time changes:
```
2. Open `app/views/todos.ejs` in a text or code editor, then change the text on line 18.
3. Save the changes in `app/views/todos.ejs`.
4. View your application at [https://localhost:3000](https://localhost:3000) to see the changes in real-time.
4. View your application at [http://localhost:3000](http://localhost:3000) to see the changes in real-time.
## Step 6: Delete everything and start over

View File

@ -80,7 +80,7 @@ In the **Containers** tab of Docker Desktop, you should now have an application
To view the frontend and add todos:
1. In Docker Desktop, expand the application stack in **Containers**.
2. Select the link to port **3000** in the **Port(s)** column or open [https://localhost:3000](https://localhost:3000).
2. Select the link to port **3000** in the **Port(s)** column or open [http://localhost:3000](http://localhost:3000).
3. Add some todo tasks in the frontend.
## Step 5: Delete the application stack and run new containers