Remove useless echos

This commit is contained in:
Nicolas Meienberger 2022-04-21 20:26:40 +00:00
parent a2ec20e490
commit 855fcd6234
4 changed files with 1 additions and 7 deletions

View file

@ -5,15 +5,13 @@ packages:
- iptables
- coreutils
- git
# - base-devel
- docker
- avahi-daemon
- nodejs
- npm
# - libusb
username: nicolas
### ZSH Settings
zsh_theme: "powerlevel10k/powerlevel10k"
ohmyzsh_git_url: https://github.com/robbyrussell/oh-my-zsh
ohmyzsh_git_url: https://github.com/robbyrussell/oh-my-zsh

View file

@ -1,7 +1,6 @@
version: "3.7"
services:
transmission:
user: 1000:1000
image: lscr.io/linuxserver/transmission
container_name: transmission
environment:

View file

@ -14,6 +14,4 @@ ENV INTERNAL_IP $INTERNAL_IP_ARG
RUN yarn build
RUN echo "$INTERNAL_IP $INTERNAL_IP"
CMD ["yarn", "start"]

View file

@ -49,7 +49,6 @@ ENV_FILE="$ROOT_FOLDER/templates/.env"
# Copy template configs to intermediary configs
[[ -f "$ROOT_FOLDER/templates/env-sample" ]] && cp "$ROOT_FOLDER/templates/env-sample" "$ENV_FILE"
echo $TZ
for template in "${ENV_FILE}"; do
sed -i "s/<internal_ip>/${INTERNAL_IP}/g" "${template}"
sed -i "s/<puid>/${PUID}/g" "${template}"