I found where the config file was located. I put the config below (sensitive bits obfuscated), and am getting these errors when starting the container.
logs:
level: debug # debug, info(default), warning, error, critical
log_file_name: pysmt # without extension, log extension will be added automatically
health_check:
log_info_line_at: 30 # in minutes, 0: disable
smartmetertexas: # smartmetertexas.com
base_url: https://smartmetertexas.com/api
username: ************ # Update with your username to access smartmetertexas.com
password: *********** # Update with your password to access smartmetertexas.com
esiid: ************ # Update with your ESSID, you can find from your electric bill or once you login to smartmetertexas.com
meter_number: ******** # Update with your Meter Number, you can find in your electric bill or once you login to smartmetertexas.com
poll_interval_minutes: 30 # 0: disable, do set below 30 as smartmetertexas.com will not allow reading more than twice in an hour
wait_interval_before_ondemand_read_minutes: 5
force_first_read: False # if true it will attempt to read Smart Meter Texas, otherwise at poll_interval
home_assistant: # Home Assistant access details
base_url: http://192.168.1.76:8123 # your Home Assistant URL/IP, no slash (/) at the end for example: http://192.168.1.2:8123
access_token: ***************************************************************************
ha_entity: sensor.smt_reading # home assistnat entity name to be created
2020-08-07T22:11:34.252206677Z /bin/helper_common.py:16: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.,
2020-08-07T22:11:34.252240311Z self.config = yaml.load(open(self.config_folder + 'config.yaml')),
2020-08-07T22:11:34.255531143Z Traceback (most recent call last):,
2020-08-07T22:11:34.255568112Z File "./main.py", line 131, in <module>,
2020-08-07T22:11:34.255615553Z meter_read_helper = MeterReadHelper(host_mapped_folder),
2020-08-07T22:11:34.255620410Z File "./main.py", line 13, in __init__,
2020-08-07T22:11:34.255675334Z self.__commonHelper = CommonHelper(host_mapped_folder),
2020-08-07T22:11:34.255679925Z File "/bin/helper_common.py", line 16, in __init__,
2020-08-07T22:11:34.255749136Z self.config = yaml.load(open(self.config_folder + 'config.yaml')),
2020-08-07T22:11:34.255757754Z File "/usr/local/lib/python3.8/site-packages/yaml/__init__.py", line 114, in load,
2020-08-07T22:11:34.255994028Z return loader.get_single_data(),
2020-08-07T22:11:34.256001637Z File "/usr/local/lib/python3.8/site-packages/yaml/constructor.py", line 49, in get_single_data,
2020-08-07T22:11:34.256246792Z node = self.get_single_node(),
2020-08-07T22:11:34.256251102Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 36, in get_single_node,
2020-08-07T22:11:34.256466010Z document = self.compose_document(),
2020-08-07T22:11:34.256469711Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 55, in compose_document,
2020-08-07T22:11:34.256535401Z node = self.compose_node(None, None),
2020-08-07T22:11:34.256543208Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 84, in compose_node,
2020-08-07T22:11:34.256641596Z node = self.compose_mapping_node(anchor),
2020-08-07T22:11:34.256649637Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 133, in compose_mapping_node,
2020-08-07T22:11:34.256667329Z item_value = self.compose_node(node, item_key),
2020-08-07T22:11:34.256670632Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 84, in compose_node,
2020-08-07T22:11:34.256715095Z node = self.compose_mapping_node(anchor),
2020-08-07T22:11:34.256719598Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 127, in compose_mapping_node,
2020-08-07T22:11:34.256796833Z while not self.check_event(MappingEndEvent):,
2020-08-07T22:11:34.256804108Z File "/usr/local/lib/python3.8/site-packages/yaml/parser.py", line 98, in check_event,
2020-08-07T22:11:34.257083369Z self.current_event = self.state(),
2020-08-07T22:11:34.257086929Z File "/usr/local/lib/python3.8/site-packages/yaml/parser.py", line 428, in parse_block_mapping_key,
2020-08-07T22:11:34.257235151Z if self.check_token(KeyToken):,
2020-08-07T22:11:34.257238521Z File "/usr/local/lib/python3.8/site-packages/yaml/scanner.py", line 115, in check_token,
2020-08-07T22:11:34.257494514Z while self.need_more_tokens():,
2020-08-07T22:11:34.257497829Z File "/usr/local/lib/python3.8/site-packages/yaml/scanner.py", line 152, in need_more_tokens,
2020-08-07T22:11:34.257566102Z self.stale_possible_simple_keys(),
2020-08-07T22:11:34.257571263Z File "/usr/local/lib/python3.8/site-packages/yaml/scanner.py", line 291, in stale_possible_simple_keys,
2020-08-07T22:11:34.257805989Z raise ScannerError("while scanning a simple key", key.mark,,
2020-08-07T22:11:34.257828181Z yaml.scanner.ScannerError: while scanning a simple key,
2020-08-07T22:11:34.257850217Z in "/config/config.yaml", line 22, column 1,
2020-08-07T22:11:34.257852959Z could not find expected ':',
2020-08-07T22:11:34.257855377Z in "/config/config.yaml", line 23, column 1,
2020-08-07T22:12:55.126233392Z /bin/helper_common.py:16: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.,
2020-08-07T22:12:55.126255112Z self.config = yaml.load(open(self.config_folder + 'config.yaml')),
2020-08-07T22:12:55.130328147Z Traceback (most recent call last):,
2020-08-07T22:12:55.130339990Z File "./main.py", line 131, in <module>,
2020-08-07T22:12:55.130383703Z meter_read_helper = MeterReadHelper(host_mapped_folder),
2020-08-07T22:12:55.130394342Z File "./main.py", line 13, in __init__,
2020-08-07T22:12:55.130405968Z self.__commonHelper = CommonHelper(host_mapped_folder),
2020-08-07T22:12:55.130409537Z File "/bin/helper_common.py", line 16, in __init__,
2020-08-07T22:12:55.130504456Z self.config = yaml.load(open(self.config_folder + 'config.yaml')),
2020-08-07T22:12:55.130514379Z File "/usr/local/lib/python3.8/site-packages/yaml/__init__.py", line 114, in load,
2020-08-07T22:12:55.130540245Z return loader.get_single_data(),
2020-08-07T22:12:55.130546100Z File "/usr/local/lib/python3.8/site-packages/yaml/constructor.py", line 49, in get_single_data,
2020-08-07T22:12:55.130605962Z node = self.get_single_node(),
2020-08-07T22:12:55.130611414Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 36, in get_single_node,
2020-08-07T22:12:55.130674800Z document = self.compose_document(),
2020-08-07T22:12:55.130684848Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 55, in compose_document,
2020-08-07T22:12:55.130721864Z node = self.compose_node(None, None),
2020-08-07T22:12:55.130732046Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 84, in compose_node,
2020-08-07T22:12:55.130757126Z node = self.compose_mapping_node(anchor),
2020-08-07T22:12:55.130763386Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 133, in compose_mapping_node,
2020-08-07T22:12:55.130855971Z item_value = self.compose_node(node, item_key),
2020-08-07T22:12:55.130865719Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 84, in compose_node,
2020-08-07T22:12:55.130898672Z node = self.compose_mapping_node(anchor),
2020-08-07T22:12:55.130904871Z File "/usr/local/lib/python3.8/site-packages/yaml/composer.py", line 127, in compose_mapping_node,
2020-08-07T22:12:55.130975649Z while not self.check_event(MappingEndEvent):,
2020-08-07T22:12:55.130980699Z File "/usr/local/lib/python3.8/site-packages/yaml/parser.py", line 98, in check_event,
2020-08-07T22:12:55.131061620Z self.current_event = self.state(),
2020-08-07T22:12:55.131075783Z File "/usr/local/lib/python3.8/site-packages/yaml/parser.py", line 428, in parse_block_mapping_key,
2020-08-07T22:12:55.131182386Z if self.check_token(KeyToken):,
2020-08-07T22:12:55.131187074Z File "/usr/local/lib/python3.8/site-packages/yaml/scanner.py", line 115, in check_token,
2020-08-07T22:12:55.131265919Z while self.need_more_tokens():,
2020-08-07T22:12:55.131275348Z File "/usr/local/lib/python3.8/site-packages/yaml/scanner.py", line 152, in need_more_tokens,
2020-08-07T22:12:55.131338076Z self.stale_possible_simple_keys(),
2020-08-07T22:12:55.131342623Z File "/usr/local/lib/python3.8/site-packages/yaml/scanner.py", line 291, in stale_possible_simple_keys,
2020-08-07T22:12:55.131446739Z raise ScannerError("while scanning a simple key", key.mark,,
2020-08-07T22:12:55.131474584Z yaml.scanner.ScannerError: while scanning a simple key,
2020-08-07T22:12:55.131479556Z in "/config/config.yaml", line 22, column 1,
2020-08-07T22:12:55.131482497Z could not find expected ':',
2020-08-07T22:12:55.131485225Z in "/config/config.yaml", line 23, column 1,