Nextcloud » Historie » Version 5
Jeremias Keihsler, 22.02.2021 13:06
1 | 1 | Jeremias Keihsler | h1. Nextcloud |
---|---|---|---|
2 | |||
3 | h2. Install |
||
4 | |||
5 | 4 | Jeremias Keihsler | currently in EPEL-testing ... |
6 | |||
7 | |||
8 | |||
9 | 1 | Jeremias Keihsler | h3. ius-release repo |
10 | 2 | Jeremias Keihsler | |
11 | [[dw_os_cos7:repo_ius_release|IUS repository]] |
||
12 | 3 | Jeremias Keihsler | |
13 | h3. php7.1 |
||
14 | |||
15 | <code> |
||
16 | yum install php71u php71u-mysqlnd php71u-dom php71u-mbstring php71u-gd php71u-pdo php71u-json php71u-xml php71u-zip curl php71u-curl php71u-mcrypt |
||
17 | </code> |
||
18 | 5 | Jeremias Keihsler | |
19 | h2. podman based |
||
20 | |||
21 | taken from https://fedoramagazine.org/nextcloud-20-on-fedora-linux-with-podman/ |
||
22 | |||
23 | <pre><code class="shell"> |
||
24 | sudo dnf install podman |
||
25 | </code></pre> |
||
26 | |||
27 | <pre><code class="shell"> |
||
28 | podman network create nextcloud-net |
||
29 | podman network ls |
||
30 | podman network inspect nextcloud-net |
||
31 | </code></pre> |
||
32 | |||
33 | <pre><code class="shell"> |
||
34 | podman volume create nextcloud-app |
||
35 | podman volume create nextcloud-data |
||
36 | podman volume create nextcloud-db |
||
37 | </code></pre> |
||
38 | |||
39 | <pre><code class="shell"> |
||
40 | podman volume ls |
||
41 | podman volume inspect nextcloud-app |
||
42 | </code></pre> |
||
43 | |||
44 | <pre class="wrap"><code class="shell"> |
||
45 | podman run --detach --env MYSQL_DATABASE=nextcloud --env MYSQL_USER=nextcloud --env MYSQL_PASSWORD=DB_USER_PASSWORD --env MYSQL_ROOT_PASSWORD=DB_ROOT_PASSWORD --volume nextcloud-db:/var/lib/mysql --network nextcloud-net --restart on-failure --name nextcloud-db docker.io/library/mariadb:10 |
||
46 | </code></pre> |