blob: d096185b8ec4b0567223638519a163f1b2348152 (
plain) (
blame)
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
|
---
nextcloud_zfs:
pool: storage
name: nextcloud
properties:
compression: lz4
nextcloud_instances:
wolke.elevate.at:
# new: true
version: 27.0.2
port: 8100
hostnames:
- wolke.elevate.at
zfs_properties:
quota: 400G
database:
type: mariadb
version: 10.11.4
password: "{{ vault_nextcloud_database_passwords['wolke.elevate.at'] }}"
custom_image:
dockerfile: |
RUN set -x \
&& apt-get update -q \
&& apt-get install -y -q smbclient libsmbclient-dev \
&& pecl install smbclient \
&& docker-php-ext-enable smbclient \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
insomnia.skillz.biz:
# new: true
version: 27.0.2
port: 8101
hostnames:
- insomnia.skillz.biz
zfs_properties:
quota: 300G
database:
type: mariadb
version: 10.11.4
password: "{{ vault_nextcloud_database_passwords['insomnia.skillz.biz'] }}"
nc.skillz.biz:
# new: true
version: 27.0.2
port: 8102
hostnames:
- nc.skillz.biz
zfs_properties:
quota: 200G
database:
type: mariadb
version: 10.11.4
password: "{{ vault_nextcloud_database_passwords['nc.skillz.biz'] }}"
wae.elevate.at:
# new: true
version: 27.0.2
port: 8104
hostnames:
- wae.elevate.at
zfs_properties:
quota: 100G
database:
type: mariadb
version: 10.11.4
password: "{{ vault_nextcloud_database_passwords['wae.elevate.at'] }}"
wolke.elev8.at:
# new: true
version: 21.0.1
port: 8105
hostnames:
- wolke.elev8.at
zfs_properties:
quota: 10G
database:
type: mariadb
version: 10.5.13
password: "{{ vault_nextcloud_database_passwords['wolke.elev8.at'] }}"
|