1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2026-01-05 21:09:17 +00:00

Revert "Add markdown linting support" (#196)

This reverts commit 64a76273c1.
This commit is contained in:
David Young
2021-10-20 15:37:36 +13:00
committed by GitHub
parent 64a76273c1
commit b5fbe87d97
127 changed files with 1348 additions and 655 deletions

View File

@@ -28,7 +28,7 @@ Enter phpIPAM. A tool designed to help home keeps as well as large organisations
We'll need several directories to bind-mount into our container, so create them in `/var/data/phpipam`:
```bash
```
mkdir /var/data/phpipam/databases-dump -p
mkdir /var/data/runtime/phpipam -p
```
@@ -37,7 +37,7 @@ mkdir /var/data/runtime/phpipam -p
Create `phpipam.env`, and populate with the following variables
```bash
```
# Setup for github, phpipam application
OAUTH2_PROXY_CLIENT_ID=
OAUTH2_PROXY_CLIENT_SECRET=
@@ -62,7 +62,7 @@ BACKUP_FREQUENCY=1d
Additionally, create `phpipam-backup.env`, and populate with the following variables:
```bash
```
# For MariaDB/MySQL database
MYSQL_ROOT_PASSWORD=imtoosecretformyshorts
MYSQL_DATABASE=phpipam
@@ -74,6 +74,8 @@ BACKUP_NUM_KEEP=7
BACKUP_FREQUENCY=1d
```
### Setup Docker Swarm
Create a docker swarm config file in docker-compose syntax (v3), something like this:
@@ -159,4 +161,4 @@ Log into your new instance at https://**YOUR-FQDN**, and follow the on-screen pr
[^1]: If you wanted to expose the phpIPAM UI directly, you could remove the `traefik.http.routers.api.middlewares` label from the app container :thumbsup:
--8<-- "recipe-footer.md"
--8<-- "recipe-footer.md"