kemonine
/
lollipopcloud
Archived
1
0
Fork 0

More misc cleanup of docs to match latest lollipop setup

This commit is contained in:
KemoNine 2018-09-17 19:12:53 -04:00
parent 0bd7aa3f62
commit e541b3e5f4
No known key found for this signature in database
GPG Key ID: 9D79FBF661EC6779
3 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@ apt install munin munin-node \
munin-plugins-core munin-plugins-extra \
libcgi-fast-perl
systemctl enable munin-node
systemcl restart munin-node
systemctl restart munin-node
```

View File

@ -20,9 +20,9 @@ Setup a generic script that'll auto update NextCloud, build a container and laun
``` bash
mkdir /var/nextcloud
chown www-data /var/nextcloud
chown -R www-data: /var/nextcloud
cat > /root/docker/nextcloud.sh <<EOF
cat > /scratch/docker/nextcloud.sh <<EOF
#!/bin/bash
ARCH=\`arch\`
@ -70,13 +70,13 @@ docker run \\
EOF
chmod a+x /root/docker/nextcloud.sh
chmod a+x /scratch/docker/nextcloud.sh
```
## Run NextCloud
Simply execute ```/root/docker/nextcloud.sh``` to update/run NextCloud.
Simply execute ```/scratch/docker/nextcloud.sh``` to update/run NextCloud.
## Update Unbound

View File

@ -10,7 +10,7 @@ Setup a generic script that'll auto update , build a container and launch it. Yo
mkdir -p /var/postgres/data
cat > /root/docker/postgres.sh << EOF
cat > /scratch/docker/postgres.sh << EOF
#!/bin/bash
VERSION=""
@ -46,10 +46,10 @@ docker run \\
\$VERSION
EOF
chmod a+x /root/docker/postgres.sh
chmod a+x /scratch/docker/postgres.sh
```
## Run Postgres
Simply execute ```/root/docker/postgres.sh``` to update/run Postgres.
Simply execute ```/scratch/docker/postgres.sh``` to update/run Postgres.