Fixed typo

This commit is contained in:
Roger Gonzalez 2023-11-16 09:23:38 -03:00
parent f1041858ae
commit a509f2ddcd
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
2 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ To add your containers, you'll have a few environment variables available:
- `PUID`: Your PUID.
- `PGID`: Your PGID.
- `MEDIA_DIRECTORY`: Your media directory.
- `INSTALL_LOCATION`: Your install location.
- `INSTALL_DIRECTORY`: Your install location.
# Adding a container
@ -44,7 +44,7 @@ services: # -> Uncomment this line! (remove the "#" in front of it)
- PUID=${PUID} # Note how I'm using the env variables here
- PGID=${PGID} # Note how I'm using the env variables here
volumes:
- ${INSTALL_LOCATION}/config/overseer:/config # Note how I'm using the env variables here
- ${INSTALL_DIRECTORY}/config/overseer:/config # Note how I'm using the env variables here
ports:
- 5055:5055
restart: unless-stopped

View File

@ -51,7 +51,7 @@ Here's how it should look:
PUID=1000
PGID=1000
MEDIA_DIRECTORY=/srv/media
INSTALL_LOCATION=/opt/yams
INSTALL_DIRECTORY=/opt/yams
MEDIA_SERVICE=jellyfin
# VPN configuration
@ -76,7 +76,7 @@ sed -i -e "s|<filename>|/opt/yams/docker-compose.yaml|g" yams
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ REPLACE THE FIRST LINE HERE BETWEEN THE "|"
sed -i -e "s|<custom_file_filename>|/opt/yams/docker-compose.custom.yaml|g" yams
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ REPLACE THE SECOND LINE HERE BETWEEN THE "|"
sed -i -e "s|<install_location>|/opt/yams|g" yams
sed -i -e "s|<install_DIRECTORY>|/opt/yams|g" yams
# ^^^^^^^^^ REPLACE THE THIRD LINE HERE BETWEEN THE "|"
```