Skip to content

Commit 35a17d1

Browse files
committed
Add info on media stack setup
1 parent 7e638c6 commit 35a17d1

7 files changed

Lines changed: 312 additions & 75 deletions

File tree

programming-notes/general/docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ Docker provides [restart policies](https://docs.docker.com/engine/containers/sta
8686
The following command starts container named `containername` and configures it to always restart, unless the container is explicitly stopped, or the daemon restarts.
8787

8888
```bash
89-
docker run -d --restart always containername
89+
docker run -d --restart unless-stopped containername
9090
```
9191

9292
The following command changes the restart policy for an already running container:
9393

9494
```bash
95-
docker update --restart always containername
95+
docker update --restart unless-stopped containername
9696
```
9797

9898
### Using a process manager

programming-notes/homeserver/index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ Overview of several services for a Home Server.
3636

3737
- [Uptime Kuma](https://uptimekuma.org/)
3838

39+
### Documentation and knowledge base
40+
41+
- [Outline](https://www.getoutline.com/)
42+
3943

4044

4145
## Resources
@@ -54,4 +58,6 @@ Overview of several services for a Home Server.
5458

5559
- [Looking for a minimal-fluff guide to first home server setup for technical people](https://www.reddit.com/r/HomeServer/comments/17vcllp/looking_for_a_minimalfluff_guide_to_first_home/)
5660

57-
- [The complete guide to building your personal self hosted server for streaming and ad-blocking](https://www.reddit.com/r/Piracy/comments/pqsomd/the_complete_guide_to_building_your_personal_self/)
61+
- [The complete guide to building your personal self hosted server for streaming and ad-blocking](https://www.reddit.com/r/Piracy/comments/pqsomd/the_complete_guide_to_building_your_personal_self/)
62+
63+
- [Techno TIm](https://technotim.live/)

programming-notes/homeserver/setup-homepage.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cd homepage
1616
nano docker-compose.yml
1717
```
1818

19-
```bash
19+
```yaml
2020
services:
2121
homepage:
2222
image: ghcr.io/gethomepage/homepage:latest
@@ -28,6 +28,7 @@ services:
2828
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
2929
environment:
3030
HOMEPAGE_ALLOWED_HOSTS: hostname:3000 # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
31+
restart: 'unless-stopped'
3132
```
3233
3334
Start Docker container:

programming-notes/homeserver/setup-jellyfin.md

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)