This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo docker build -t build_dynamic_geofences . | |
| sudo docker run build_dynamic_geofences | |
| sudo docker build -t apply_dynamic_geofences . | |
| sudo docker run apply_dynamic_geofences | |
| sudo docker build -t compute_at_venue_time . | |
| sudo docker run compute_at_venue_time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ sudo docker volume ls | |
| DRIVER VOLUME NAME | |
| local ubuntu | |
| ubuntu@ip-10-6-40-184:~$ sudo docker volume inspect | |
| "docker volume inspect" requires at least 1 argument. | |
| See 'docker volume inspect --help'. | |
| Usage: docker volume inspect [OPTIONS] VOLUME [VOLUME...] | |
| Display detailed information on one or more volumes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import smtplib | |
| from email.MIMEMultipart import MIMEMultipart | |
| from email.MIMEText import MIMEText | |
| name = "Ruan" | |
| from_address = "[email protected]" | |
| to_address = "[email protected]" | |
| subject = "Test" |
OlderNewer