11 lines
219 B
Plaintext
11 lines
219 B
Plaintext
|
{% from 'lib.sls' import container_deploy with context %}
|
||
|
|
||
|
Create gotify data directory:
|
||
|
file.directory:
|
||
|
- name: /srv/gotify
|
||
|
- user: root
|
||
|
- group: root
|
||
|
- mode: "0755"
|
||
|
|
||
|
{{ container_deploy('gotify') }}
|