You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Modify the environment variables to suit your deployment
65
+
nano .env
66
+
67
+
docker compose up -d
68
+
69
+
# Visit the IP address of your virtual machine UNSECURED using HTTP and ensure your home page exists (e.g., http://niner.com)
70
+
71
+
# Once you've verified that you're up and running, then remove the containers
72
+
docker rm $(docker ps -aq) -f
73
+
74
+
# Set up Domains between GCP and Registrar (Siteground is used in the video tutorial)
75
+
# ONCE DNS Zones and Nameservers are linked between GCP and Siteground/registrar:
76
+
77
+
# Run docker compose to get the certificates
78
+
docker compose up
79
+
80
+
# Exit the containers using Control + C, and then remove them (certificates have been received, but NGINX is still not running via SSL due to configuration file contents; certificates WILL persist)
81
+
docker rm $(docker ps -aq) -f
82
+
83
+
# Run the docker containers
84
+
docker compose up -d
85
+
#################################################################### STOP VIDEO 4
86
+
#################################################################### START VIDEO 5 HERE
0 commit comments