Skip to content

Commit

Permalink
fix redash
Browse files Browse the repository at this point in the history
  • Loading branch information
chendelin1982 authored Mar 8, 2024
1 parent fe3c7ab commit 1f29e58
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 8 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ This repository include [200+ applications](https://github.com/Websoft9/docker-l

You can use them for bussiness management, content management, data analysis, development, DevOps and any things you want to do.

## Where image from?

All Docker image come from the Official of the software or an authoritative third party (such as: Bitnami), and Websoft9 does not maintain the image.

Websoft9 only verify and test the image or docker compose provided by the official to ensure that they can be run directly with **docker compose up** without any configuration.

## How to use it?

Expand Down
7 changes: 6 additions & 1 deletion apps/jellyfin/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,17 @@ services:
volumes:
- config:/config
- cache:/cache
- media:/media #you can add more folder for media, e.g: music, movie
- media:/media
#you can add more folder for media, e.g: music, movie
#- movie:/movie
#- music:/music

volumes:
config:
cache:
media:
#movie:
#music:

networks:
default:
Expand Down
5 changes: 3 additions & 2 deletions apps/navidrome/.env
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ W9_ID=navidrome
W9_HTTP_PORT=4533

W9_URL=example.com
W9_URL_REPLACE=true
W9_NETWORK=websoft9

#### ----------------------------------------------------------------------------------------- ####
Expand All @@ -23,4 +22,6 @@ W9_NETWORK=websoft9
ND_SCANSCHEDULE=1h
ND_LOGLEVEL=info
ND_SESSIONTIMEOUT=24h
ND_BASEURL=/music

# It can set domain or /alias
#ND_BASEURL=/music
2 changes: 0 additions & 2 deletions apps/navidrome/Notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# navidrome

- ND_BASEURL?
3 changes: 2 additions & 1 deletion apps/redash/.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
W9_DIST=community
W9_REPO=redash/redash
W9_VERSION=latest
#Get version: https://github.com/getredash/redash/releases
W9_VERSION=10.1.0.b50633
W9_POWER_PASSWORD=1PrMxExC45LsCT

W9_ID=redash
Expand Down
16 changes: 15 additions & 1 deletion apps/redash/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# compose: https://github.com/getredash/setup/blob/master/data/docker-compose.yml
# image: https://hub.docker.com/r/redash/redash
# docs: https://github.com/getredash/setup/blob/master/setup.sh
# install method: https://github.com/getredash/setup/blob/master/setup.sh
# docs: https://redash.io/help/open-source/setup

version: "3.8"
x-redash-service: &redash-service
Expand Down Expand Up @@ -57,6 +58,19 @@ services:
- postgres:/var/lib/postgresql/data
restart: always

# add by Websoft9, it the same with sudo docker-compose run --rm server create_db
docker-cli:
image: alpinelinux/docker-cli
depends_on:
- server
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: |
/bin/bash -c "
docker exec -i ${W9_ID} create_db
"
volumes:
postgres:
redis:
Expand Down
2 changes: 1 addition & 1 deletion apps/redash/variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"dist": "community",
"version": [
"latest"
"10.1.0.b50633"
]
}
],
Expand Down

0 comments on commit 1f29e58

Please sign in to comment.