mirror of https://github.com/tiyn/wiki
parent
fe2ecb1d9c
commit
b7af9c81b1
@ -0,0 +1,15 @@
|
|||||||
|
# Bibliogram
|
||||||
|
|
||||||
|
[Bibliogram](https://sr.ht/~cadence/bibliogram/) is an alternative frontend for
|
||||||
|
Instagram.
|
||||||
|
|
||||||
|
## Server
|
||||||
|
|
||||||
|
A server can be setup via docker with the [cloudrac3r image](./docker-images/cloudrac3r_-_bibliogram.md).
|
||||||
|
|
||||||
|
## Automatic redirect from Instagram
|
||||||
|
|
||||||
|
There are various addons to redirect from Instagram links to your (or a public)
|
||||||
|
invidious instance.
|
||||||
|
For Firefox for example there is
|
||||||
|
[privacy redirect](https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/).
|
@ -0,0 +1,55 @@
|
|||||||
|
# cloudrac3r - bibliogram
|
||||||
|
|
||||||
|
The official container and documentation was made by [cloudrac3r](https://github.com/cloudrac3r/bibliogram).
|
||||||
|
This docker-rebuild is made up by a `docker-compose.yml` file.
|
||||||
|
|
||||||
|
## Set-up for building process
|
||||||
|
|
||||||
|
First of all create a folder for your `rebuild.sh`.
|
||||||
|
After that clone bibliogram from [sr.ht](https://sr.ht/~cadence/bibliogram/)
|
||||||
|
into a folder within the just created folder.
|
||||||
|
Set the variables, volumes and ports in the `docker-compose.yml` in the cloned
|
||||||
|
repository according and run the `rebuild.sh`
|
||||||
|
|
||||||
|
## Volumes
|
||||||
|
|
||||||
|
Set the following volumes with the -v tag.
|
||||||
|
|
||||||
|
| Volume-Name | Container mount | Description |
|
||||||
|
| ----------- | --------------- | ----------------------------------- |
|
||||||
|
| `db` | `/app/db` | storage for the bibliogram database |
|
||||||
|
|
||||||
|
## Ports
|
||||||
|
|
||||||
|
Set the following ports in the `ports:` section.
|
||||||
|
|
||||||
|
| Container Port | Recommended outside port | Protocol | Description |
|
||||||
|
| -------------- | ------------------------ | -------- | ----------- |
|
||||||
|
| `10407` | `10407` | TCP | WebUI |
|
||||||
|
|
||||||
|
## Rebuild
|
||||||
|
|
||||||
|
```shell
|
||||||
|
#!/bin/sh
|
||||||
|
cd /root/docker/bibliogram/bibliogram
|
||||||
|
docker-compose down
|
||||||
|
docker-compose up -d
|
||||||
|
cd ..
|
||||||
|
```
|
||||||
|
|
||||||
|
## Docker-Compose.yml
|
||||||
|
|
||||||
|
```yml
|
||||||
|
version: "3"
|
||||||
|
volumes:
|
||||||
|
db:
|
||||||
|
services:
|
||||||
|
bibliogram:
|
||||||
|
build: .
|
||||||
|
image: cloudrac3r/bibliogram
|
||||||
|
volumes:
|
||||||
|
- db:/app/db
|
||||||
|
ports:
|
||||||
|
- 10407:10407
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
Loading…
Reference in new issue