Skip to content

Commit

Permalink
fix: docker lxc docs
Browse files Browse the repository at this point in the history
  • Loading branch information
coodyme committed Sep 15, 2024
1 parent b2cf404 commit a70c6e8
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 18 deletions.
22 changes: 22 additions & 0 deletions *arr/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# *arr Applications

## Jellyfin

## Jellyseer

## Radarr

## Sonarr

Sonarr is a personal video recorder (PVR) software designed for Usenet and BitTorrent users. It allows users to manage and organize their TV show collection with ease. Sonarr integrates with popular Usenet and BitTorrent clients, such as NZBget and Transmission, to automate the downloading and organizing of TV show files. The software provides a web-based interface for managing and organizing TV shows, making it easy to search and find titles, seasons, and episodes. Sonarr also supports metadata management, including TV show posters and information, making it easy for users to keep their TV show collection organized and up-to-date. The software is designed to be easy to use and provides a simple and intuitive interface for managing and organizing TV show collections, making it a valuable tool for TV show enthusiasts who want to keep their collection organized and up-to-date. With Sonarr, users can enjoy their TV show collection from anywhere, making it a powerful tool for managing and sharing TV show files.

To create a new Proxmox VE Sonarr LXC, run the command below in the Proxmox VE Shell.
To Update Sonarr, run the command below (or type update) in the LXC Console.

```bash
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/sonarr.sh)"
```

> To access Sonarr, open a web browser and navigate to `http://<IP>:8989` where `<IP>` is the IP address of the Proxmox VE server.
## Prowlarr
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Infrastructure

Here, you will find a collection of scripts and tools that I use to manage my home infrastructure. This includes my personal servers and my home network settings.

> There is a folder called `docker-compose` that contains a collection of `docker-compose.yml` files for various services.
3 changes: 0 additions & 3 deletions docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,3 @@ By default, I always use `ttek` to create my containers. This is a script that I
```bash
bash -c "$(wget -qO - https://github.com/tteck/Proxmox/raw/main/ct/alpine-docker.sh)"
```

## Time Zone
By default, my time zone is `America/Sao_Paulo` for all of my containers. So in the .env file, the `TZ` variable is set to `America/Sao_Paulo`.
15 changes: 0 additions & 15 deletions dragonfly.md

This file was deleted.

32 changes: 32 additions & 0 deletions dragonfly/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Dragonfly

This guide will walk you through the steps to deploy a Dragonfly instance using Docker Compose.

> This guide assumes you have `docker` and `docker-compose` installed on your machine. If not, Install `Docker` and `Docker Compose` before continuing.
> If you are running Proxmox VE, follow this [guide](../docker.md) to install Docker and Docker Compose on Proxmox VE
1. Download the `docker-compose.yml` file from the repository.
wget

2.

3.


# Launch the Dragonfly Instance
docker compose up -d

# Confirm image is up
docker ps | grep dragonfly

```
ac94b5ba30a0 docker.dragonflydb.io/dragonflydb/dragonfly "entrypoint.sh drago…" 45 seconds ago Up 31 seconds 0.0.0.0:6379->6379/tcp, :::6379->6379/tcp docker_dragonfly_1
```

# Log follow the dragonfly container
docker logs -f docker_dragonfly_1


https://www.dragonflydb.io/docs/getting-started/docker-compose
17 changes: 17 additions & 0 deletions dragonfly/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: '3.8'

services:
dragonfly:
image: 'docker.dragonflydb.io/dragonflydb/dragonfly'
ulimits:
memlock: -1
ports:
- "6379:6379"
# For better performance, consider `host` mode instead `port` to avoid docker NAT.
# `host` mode is NOT currently supported in Swarm Mode.
# https://docs.docker.com/compose/compose-file/compose-file-v3/#network_mode
# network_mode: "host"
volumes:
- dragonflydata:/data
volumes:
dragonflydata:

0 comments on commit a70c6e8

Please sign in to comment.