commit d0ce0f6e3c737548cc878f497466f81edb521205 parent 298e7e7ea080e14f2f56d231224c86e19c2f92ec Author: AndrewLockVI <andrewlaack1@gmail.com> Date: Fri, 10 Jan 2025 00:50:18 -0600 Added vault warden Diffstat:
| M | docker-compose.yml | | | 29 | ++++++++++++++++++++++++++--- |
1 file changed, 26 insertions(+), 3 deletions(-)
diff --git a/docker-compose.yml b/docker-compose.yml @@ -23,9 +23,32 @@ services: - /home/shared/books:/books restart: unless-stopped web-server: - image: nginx:latest # Use the official Nginx image + image: nginx:latest container_name: web-server ports: - - "80:80" # Map port 80 on the host to port 80 in the container + - "80:80" volumes: - - ../html:/usr/share/nginx/html # Mount the 'html' directory from the host to the container + - ../html:/usr/share/nginx/html + navidrome: + image: deluan/navidrome:latest + ports: + - "4533:4533" + restart: unless-stopped + environment: + ND_SCANSCHEDULE: 1h + ND_LOGLEVEL: info + ND_SESSIONTIMEOUT: 24h + ND_BASEURL: "" + volumes: + - "../navidrome:/data" + - "../../music:/music:ro" + vaultwarden: + image: vaultwarden/server:latest + container_name: vaultwarden + restart: unless-stopped + environment: + DOMAIN: "https://www.laack.co" + volumes: + - ../vw/:/data/ + ports: + - 999:80