Advanced Search
Search Results
230 total results found
Docker Install
version: '2' services: db: restart: always image: postgres:12 volumes: - /var/fider/pg_data:/var/lib/postgresql/data environment: POSTGRES_USER: fider POSTGRES_PASSWORD: s0m3g00dp4ssw0rd app: restart: always...
Trilium Notes
Over the last few years we've looked at several different note-taking applications and I can say that I was SHOCKED when I took a look at Trilium for the first time. The deployment process was about the easiest thing I've ever done and the resource usage is s...
Setup
cryptgeon is a secure, open source note / file sharing service inspired by PrivNote written in rust & svelte. Github: https://github.com/cupcakearmy/cryptgeon The following docker-compose is modified from the developer's original as I've added Nginx Proxy Ma...
Docker Compose
version: '3' services: web: image: daledavies/jump restart: always ports: - 8123:8080 volumes: - /srv/dev-disk-by-uuid-d4874d4e-d8e7-4d17-9da4-2813060ed348/Storage/jump/backgrounds:/background...
Docker Compose
NOTE: This page has been deprecated. Please visit the official documentation for current installation instructions. One of the things I've found myself in desperate need of is a project management system. I've looked at several over the last month or two and ...
docker-compose.yml
version: "3.8" services: immich-server: image: altran1502/immich-server:release entrypoint: ["/bin/sh", "./start-server.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - .env environment: - N...
.env
################################################################################### # Database ################################################################################### DB_HOSTNAME=immich_postgres DB_USERNAME=postgres DB_PASSWORD=postgres DB_...
NextCloud with CloudFlare Tunnels
We're going to take a look at getting NextCloud up and running with Docker, Portainer, and CloudFlare Tunnels. This post will be a companion piece to the video and will really only have the different bits that I updated in the video. NextCloud Docker Compos...
NextCloud Docker Compose
--- version: "2" services: app: depends_on: - db environment: - MYSQL_PASSWORD= - MYSQL_DATABASE=nextcloud - MYSQL_USER=nextcloud - MYSQL_HOST=db image: nextcloud links: - db ports: ...
Uptime Kuma
version: '3.3' volumes: uptimekuma: services: uptime-kuma: image: louislam/uptime-kuma container_name: uptime-kuma volumes: - uptimekuma:/app/data ports: - 3001:3001
Self-Hosted Imgur Alternative - Picsur
Picsur is an easy to use, selfhostable image sharing service like Imgur with built in converting Right now this software is still in beta, and many things are still missing, or will be changed in the future. But it does function, so feel free to give it a try...
Docker Compose Example 1 (Lazy)
version: "3" services: lazytainer: container_name: lazytainer image: ghcr.io/vmorganp/lazytainer:master environment: - PORT=8081 # comma separated list of ports...or just the one - LABEL=lazytainer # value of lazytain...
Docker Compose Example 2 (Lazy2)
version: "3" services: lazytainer2: container_name: lazytainer2 image: ghcr.io/vmorganp/lazytainer:master environment: - PORT=3000 # comma separated list of ports...or just the one - LABEL=lazytainer2 # value of ...
Docker Compose Example 3 (Lazy3)
version: "3" services: lazytainer3: container_name: lazytainer3 image: ghcr.io/vmorganp/lazytainer:master environment: - PORT=8080, 3000 # comma separated list of ports...or just the one - LABEL=lazytainer3 # valu...
Docker-Compose
version: '2' services: audiobookshelf: image: ghcr.io/advplyr/audiobookshelf:latest environment: - AUDIOBOOKSHELF_UID=998 #change to match your server - AUDIOBOOKSHELF_GID=100 #change to match your server ports: - 13378:...
Docker-Compose
version: '3.3' services: fireshare: container_name: fireshare image: shaneisrael/fireshare:latest ports: - "8888:80" volumes: - /home/docker/fireshare_data:/data #change this to your folder location - /home/docker/f...
Installation Instructions
Recently the folks at 52pi.com reached out and asked if they could send me a Mini Tower NAS Kit for me to review here on the channel. I told them that the case looked great, but I couldn't just post a review of a raspberry pi case. However, if they wanted to ...
Installation Methods
iPerf3 is a tool for active measurements of the maximum achievable bandwidth on IP networks. It supports tuning of various parameters related to timing, buffers and protocols (TCP, UDP, SCTP with IPv4 and IPv6). For each test it reports the bandwidth, loss, an...
docker-compose stack
version: '3' services: db: image: mysql # NOTE: use of "mysql_native_password" is not recommended: https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password # (this is just an example, not in...
docker-compose stack
version: '3' services: db: image: mysql # NOTE: use of "mysql_native_password" is not recommended: https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password # (this is just an example, not in...