Advanced Search
Search Results
230 total results found
Docker Containers
This is where you'll find information about Docker containers we've talked about on the channel.
Code Snippets
Affiliate Links
Here's where you'll find affiliate links and other ways to support the channel!
Kasm
CasaOS Installs
Community-based open source software focused on delivering simple home cloud experience around Docker ecosystem. https://casaos.zimaboard.com/
Proxmox
OMV 6 on Pi 4
Vikunja
Vikunja is an Open-Source, self-hosted To-Do list application for all platforms. It is licensed under the AGPLv3. https://www.youtube.com/watch?v=DqyqDWpEvKI
Navidrome
Navidrome allows you to enjoy your music collection from anywhere, by making it available through a modern Web UI and through a wide range of third-party compatible mobile apps, for both iOS and Android devices. Homepage: https://www.navidrome.org/ Docker ...
AdGuard Home Sync
Synchronize your AdGuard Home instances Original Source: https://github.com/bakito/adguardhome-sync
FireFox Docker Container
Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements ...
Gitea
Gitea is a community managed lightweight code hosting solution written in Go. It is published under the MIT license. Original Source: https://docs.gitea.io/en-us/install-with-docker/
NextCloud
Share and collaborate on documents, send and receive email, manage your calendar and have video chats without data leaks As fully on-premises solution, Nextcloud Hub provides the benefits of online collaboration without the compliance and security risks. ...
CloudFlare DDNS
Update your domain name DNS' IP Address automatically on CloudFlare
WordPress
WordPress is open source software you can use to create a beautiful website, blog, or app.
Kanboard
Kanban is a methodology originally developed by Toyota to be more efficient.
Monica CRM
Monica is a great open source personal relationship management system to organize the interactions with your loved ones.
dupeGuru
dupeGuru is a tool to find duplicate files on your computer. It can scan either filenames or contents. The filename scan features a fuzzy matching algorithm that can find duplicate filenames even when they are not exactly the same.
PrestaShop
PrestaShop is an efficient and innovative e-commerce solution with all the features you need to create an online store and grow your business. Original: https://stackoverflow.com/a/62088287
Dozzle
Dozzle is a simple, lightweight application that provides you with a web based interface to monitor your Docker container logs live. It doesn’t store log information, it is for live monitoring of your container logs only.
Odoo
Odoo, formerly known as OpenERP, is a suite of open-source business apps written in Python and released under the AGPL license. This suite of applications covers all business needs, from Website/Ecommerce down to manufacturing, inventory and accounting, all se...
Papermerge
Papermerge is designed for scanned documents. Perfect software that will help you reduce paper clutter and keep your business organized.
Valheim Game Server
Valheim is "a brutal exploration and survival game for 1-10 players, set in a procedurally-generated purgatory inspired by viking culture. Battle, build, and conquer your way to a saga worthy of Odin’s patronage!"
Wallabag
wallabag is a self hosted read-it-later app. Unlike to other services, wallabag is free and open source. It's made for you to comfortably read and archive your articles.
HumHub
HumHub is a free social network software and framework built to give you the tools to make communication and collaboration easy and successful.
Matomo
Take back control with Matomo – a powerful web analytics platform that gives you 100% data ownership.
OpenProject
OpenProject can be installed on-premises in Docker, having full control and 100% data ownership. You know where your data is stored and what happens to it, without external influence. Your base for classic, agile or hybrid project management
Docker-Compose.yml
version: '3' services: db: image: mariadb:10 command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci environment: MYSQL_ROOT_PASSWORD: supersecret MYSQL_USER: vikunja MYSQL_PASSWORD: secret ...
NGINX.conf
server { listen 80; location / { proxy_pass http://frontend:80; } location ~* ^/(api|dav|\.well-known)/ { proxy_pass http://api:3456; client_max_body_size 20M; } }
Docker-Compose.yml
version: '3' services: navidrome: image: deluan/navidrome:latest user: 1026:100 # should be owner of volumes ports: - 4533:4533 restart: unless-stopped environment: # Optional: put your config options customization ...
Docker-Compose.yml
--- version: "2.1" services: adguardhome-sync: image: quay.io/bakito/adguardhome-sync container_name: adguardhome-sync command: run environment: - ORIGIN_URL=http://192.168.1.26:85 #change as necessary - ORIGIN_USERNAME=d...
Docker-Compose.yml
--- version: "2.1" volumes: firefox: services: firefox: image: ghcr.io/linuxserver/firefox container_name: firefox environment: - PUID=1026 #change this to for your settings - PGID=100 #change this to for your settings...
Docker-Compose.yml
version: "3" networks: gitea: external: false services: server: image: gitea/gitea:1.14.2 container_name: gitea environment: - USER_UID=998 - USER_GID=100 - GITEA__database__DB_TYPE=mysql - GITEA__dat...
x86 Docker-Compose.yml
version: '2' volumes: nextcloud: db: services: db: image: mariadb restart: always command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW --innodb-file-per-table=1 --skip-innodb-read-only-compressed volumes: ...
Raspberry Pi Docker-Compose.yml
version: '2' volumes: nextcloud: db: services: db: image: yobasystems/alpine-mariadb:latest command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW restart: always volumes: - /srv/dev-disk-by-label-Files/Da...
Docker-Compose.yml
version: '2' services: cloudflare-ddns: image: oznu/cloudflare-ddns environment: - API_KEY=TheAPIkeyYouGotFromCloudFlare - ZONE=yoursite.com restart: always
Docker-Compose.yml
version: '2.1' services: wordpress: image: wordpress restart: always ports: - 8282:80 environment: WORDPRESS_DB_HOST: db WORDPRESS_DB_USER: exampleuser WORDPRESS_DB_PASSWORD: examplepass WORDPRESS_...
Docker-Compose.yml
version: '2' services: db: image: mariadb:latest command: --default-authentication-plugin=mysql_native_password volumes: - /srv/Databases/Kanboard2:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=UVxY26hNL4qmo - M...
Docker-Compose.yml
version: "2" volumes: monica: monicadb: services: app: image: monica depends_on: - db ports: - 8485:80 environment: - APP_KEY=MiHe3JFtqFwnFaLC2X8tUzXsk56ExAKD #change this to another 32 character string. ...
Docker-Compose.yml
version: '2' volumes: configs: trash: services: dupeguru: image: jlesage/dupeguru ports: - 5800:5800 environment: - TZ=America/Denver - PUID=1026 - PGID=100 volumes: - configs:/config:rw ...
Video
Docker-Compose.yml
version: "3" services: prestashop: image: prestashop/prestashop networks: myprestashop: ports: - 8181:80 links: - mariadb:mariadb depends_on: - mariadb volumes: - /srv/Configs/PrestaShop/src:...
Docker-Compose.yml
version: '2' services: dozzle: image: amir20/dozzle:latest container_name: dozzle ports: - 8888:8080 volumes: - /var/run/docker.sock:/var/run/docker.sock
Docker-Compose.yml
version: '2' services: db: image: postgres:10 environment: - POSTGRES_USER=odoo - POSTGRES_PASSWORD=odoo - POSTGRES_DB=postgres - PGDATA=/var/lib/postgresql/data/pgdata volumes: - /srv/Databases/oodo:/var/l...
Docker-Compose.yml
--- version: "2.1" services: papermerge: image: ghcr.io/linuxserver/papermerge container_name: papermerge environment: - PUID=1000 - PGID=1000 - TZ=America/Denver volumes: - /srv/Configs/Papermerge/Configs:/...
Docker-Compose.yml
--- version: '2' services: valheim: image: lloesche/valheim-server container_name: valheim restart: always environment: - SERVER_NAME= - WORLD_NAME= - SERVER_PASS= - SERVER_PUBLIC=0 - DNS_1=1.1.1.1 ...
Docker-Compose.yml
version: 2 services: wallabag: image: wallabag/wallabag environment: - MYSQL_ROOT_PASSWORD=wallaroot - SYMFONY__ENV__DATABASE_DRIVER=pdo_mysql - SYMFONY__ENV__DATABASE_HOST=db - SYMFONY__ENV__DATABASE_PORT=3306 ...