-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcookiecutter.json
113 lines (113 loc) · 3.83 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"deployment_name": "Dioptra deployment",
"__project_slug": "{{ cookiecutter.deployment_name.lower().replace(' ', '-').replace('_', '-') }}",
"container_registry": "",
"__container_namespace": "dioptra",
"container_tag": "dev",
"docker_compose_path": "docker compose",
"systemd_required_mounts": "",
"nginx_server_name": "dioptra.example.org",
"nginx_expose_ports_on_localhost_only": ["True", "False"],
"postgres_container_tag": "16",
"__restapi_http_port": "80",
"__restapi_https_port": "443",
"__db_admin_username": "postgres",
"__db_admin_database": "postgres",
"pgadmin_default_email": "[email protected]",
"num_tensorflow_cpu_workers": "1",
"num_tensorflow_gpu_workers": "0",
"num_pytorch_cpu_workers": "1",
"num_pytorch_gpu_workers": "0",
"datasets_directory": "",
"__containers": {
"networks": ["dioptra"],
"nginx": {
"image": "nginx",
"namespace": "{{ cookiecutter.__container_namespace }}",
"tag": "{{ cookiecutter.container_tag }}",
"registry": "{{ cookiecutter.container_registry }}"
},
"mlflow_tracking": {
"image": "mlflow-tracking",
"namespace": "{{ cookiecutter.__container_namespace }}",
"tag": "{{ cookiecutter.container_tag }}",
"registry": "{{ cookiecutter.container_registry }}"
},
"restapi": {
"image": "restapi",
"namespace": "{{ cookiecutter.__container_namespace }}",
"tag": "{{ cookiecutter.container_tag }}",
"registry": "{{ cookiecutter.container_registry }}"
},
"tfcpu": {
"image": "tensorflow2-cpu",
"namespace": "{{ cookiecutter.__container_namespace }}",
"tag": "{{ cookiecutter.container_tag }}",
"registry": "{{ cookiecutter.container_registry }}"
},
"tfgpu": {
"image": "tensorflow2-gpu",
"namespace": "{{ cookiecutter.__container_namespace }}",
"tag": "{{ cookiecutter.container_tag }}",
"registry": "{{ cookiecutter.container_registry }}"
},
"pytorchcpu": {
"image": "pytorch-cpu",
"namespace": "{{ cookiecutter.__container_namespace }}",
"tag": "{{ cookiecutter.container_tag }}",
"registry": "{{ cookiecutter.container_registry }}"
},
"pytorchgpu": {
"image": "pytorch-gpu",
"namespace": "{{ cookiecutter.__container_namespace }}",
"tag": "{{ cookiecutter.container_tag }}",
"registry": "{{ cookiecutter.container_registry }}"
},
"argbash": {
"image": "argbash",
"namespace": "matejak",
"tag": "sha-0d046ad",
"registry": ""
},
"db": {
"image": "postgres",
"namespace": "",
"tag": "{{ cookiecutter.postgres_container_tag }}",
"registry": ""
},
"dbadmin": {
"image": "pgadmin4",
"namespace": "dpage",
"tag": "8.12",
"registry": ""
},
"mc": {
"image": "mc",
"namespace": "minio",
"tag": "RELEASE.2023-10-14T01-57-03Z",
"registry": ""
},
"minio": {
"image": "minio",
"namespace": "minio",
"tag": "RELEASE.2024-07-16T23-46-41Z",
"registry": ""
},
"nodejs": {
"image": "node",
"namespace": "",
"tag": "22.5.1",
"registry": ""
},
"redis": {
"image": "redis",
"namespace": "",
"tag": "7.2.6",
"registry": ""
}
},
"_copy_without_render": [
"templates"
],
"_is_pytest": "False"
}