13 lines
332 B
Plaintext
13 lines
332 B
Plaintext
|
|
# Add this to your Nomad client config (e.g. /etc/nomad.d/nomad.hcl)
|
||
|
|
# or create a separate file in /etc/nomad.d/conf.d/
|
||
|
|
|
||
|
|
host_volume "iieasy-postgres-data" {
|
||
|
|
path = "/opt/nomad/iieasy/postgres-data"
|
||
|
|
read_only = false
|
||
|
|
}
|
||
|
|
|
||
|
|
host_volume "iieasy-strapi-uploads" {
|
||
|
|
path = "/opt/nomad/iieasy/uploads"
|
||
|
|
read_only = false
|
||
|
|
}
|