diff --git a/docker-compose.yml b/docker-compose.yml index 1d4dea8..58841d6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,4 +14,4 @@ services: - 3000:3000 volumes: - ./config.json:/usr/src/app/config.json:ro # The application config (Must be created before starting the service) - - ./public:/usr/src/app/public:rw # Used for public facing images (uncomment if you are using your own images - see the public directory) + - ./public:/usr/src/app/public:rw # Used for public facing images (eg: avatar and background) diff --git a/start.sh b/start.sh index f8eff65..8a4125a 100644 --- a/start.sh +++ b/start.sh @@ -14,7 +14,7 @@ if [ -z "$(ls -A $workDir/public)" ]; then dir=$workDir/public/$item if [ ! -e "$dir" ]; then echo "Downloading $item to directory $dir" - wget -P $dir $baseUrl$item + wget -Pq $dir $baseUrl$item echo "Done" fi done