Skip to content

Commit

Permalink
Merge pull request #1112 from ferferga/docker-compose-farewell
Browse files Browse the repository at this point in the history
refactor: remove deprecated docker compose v1 mentions
  • Loading branch information
nielsvanvelzen authored Sep 10, 2024
2 parents 385766d + d9b1355 commit 5acfba4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 13 deletions.
5 changes: 2 additions & 3 deletions docs/general/administration/hardware-acceleration/amd.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ Root permission is required.
getent group video | cut -d: -f3
```

2. Use Docker command line **or** docker-compose:
2. Use Docker command line **or** docker compose:

- Example command line:

Expand All @@ -427,10 +427,9 @@ Root permission is required.
jellyfin/jellyfin
```

- Example docker-compose (version 3) configuration file written in YAML:
- Example docker-compose configuration file written in YAML:

```yaml
version: '3'
services:
jellyfin:
image: jellyfin/jellyfin
Expand Down
5 changes: 2 additions & 3 deletions docs/general/administration/hardware-acceleration/intel.md
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ What you need to do is pass the host's `render` group id to Docker and modify th
getent group render | cut -d: -f3
```

2. Use docker command line **or** docker-compose:
2. Use docker command line **or** docker compose:

- Example command line:

Expand All @@ -519,10 +519,9 @@ What you need to do is pass the host's `render` group id to Docker and modify th
jellyfin/jellyfin
```

- Example docker-compose (version 3) configuration file written in YAML:
- Example docker-compose configuration file written in YAML:

```yaml
version: '3'
services:
jellyfin:
image: jellyfin/jellyfin
Expand Down
3 changes: 1 addition & 2 deletions docs/general/administration/hardware-acceleration/nvidia.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,9 @@ Root permission is required.
jellyfin/jellyfin
```

- Example docker-compose (version 3) configuration file written in YAML:
- Example docker-compose configuration file written in YAML:

```yaml
version: '3'
services:
jellyfin:
image: jellyfin/jellyfin
Expand Down
1 change: 0 additions & 1 deletion docs/general/administration/migrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ docker run -d \
### Using docker-compose yaml

```yml
version: '3'
services:
jellyfin:
image: jellyfin/jellyfin
Expand Down
3 changes: 1 addition & 2 deletions docs/general/networking/traefik.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ sudo docker network create traefik
### docker-compose.yml

```yml
version: '3.5'
networks:
traefik:
name: traefik
Expand Down Expand Up @@ -181,7 +180,7 @@ Change example.com to your domain name and update the acme.json file with your e
Launch the Traefik and Jellyfin services.

```bash
docker-compose up -d
docker compose up -d
```

Congratulations, your stack with Traefik and Jellyfin is running!
Expand Down
3 changes: 1 addition & 2 deletions docs/general/networking/traefik2.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ The configuration below creates a Traefik v2.x installation with access at entry
### docker-compose.yml

```yml
version: '2.4'
services:
traefik:
container_name: traefik
Expand Down Expand Up @@ -287,7 +286,7 @@ These configurations use DOMAIN_NAME (i.e.: example.com) and HOST_NAME (i.e.: se
Launch the Traefik and Jellyfin services.

```bash
docker-compose up -d
docker compose up -d
```

If you set a PathPrefix (i.e. /jellyfin), you need to configure Jellyfin to expect it. After starting the service, access Jellyfin directly (via the host's IP at port 8096) and change the 'Base URL' in Dashboard / Advanced / Networking to match the '/jellyfin' path (if you used one in this configuration). Afterward, you may wish to create a firewall rule to prevent direct access to Jellyfin at port 8096 on the host, or simply ensure the port is not accessible via the Internet.
Expand Down

0 comments on commit 5acfba4

Please sign in to comment.