New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Hide redirects
  • 09:17, 25 April 2025Portainer docker compose (hist | edit) ‎[572 bytes]Karavi (talk | contribs) (Created page with "Create a docker-compose.yml file similar to this: services: portainer: image: portainer/portainer-ce:latest container_name: portainer restart: unless-stopped security_opt: - no-new-privileges:true volumes: - /etc/localtime:/etc/localtime:ro - /var/run/docker.sock:/var/run/docker.sock:ro - ./portainer-data:/data ports: - 9000:9000 Bring up your stack by running docker-compose up -d Log in to the Admi...")
  • 15:40, 8 April 2025Windows Active (hist | edit) ‎[590 bytes]Karavi (talk | contribs) (Created page with " Home: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 Home N: 3KHY7-WNT83-DGQKR-F7HPR-844BM Home Single Language: 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH Home Country Specific: PVMJN-6DFY6-9CCP6-7BKTT-D3WVR Pro: W269N-WFGWX-YVC9B-4J6C9-T83GX Pro N: MH37W-N47XK-V7XM9-C7227-GCQG9 Education: NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 Education N: 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ Enterprise: NPPR9-FWDCX-D2C8J-H872K-2YT43 Enterprise N: DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 Server kms.msguides.com kms8.msguides.c...")
  • 09:53, 8 April 2025Windows 11 Esxi (hist | edit) ‎[891 bytes]Karavi (talk | contribs) (Created page with " on isntall : Time to work around the issue… 1. When you get the error picture above simply press Shift + F10 and this will bring up a dos prompt. 2. Type regedit and hit enter. 3. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\Setup and create a new Key called: LabConfig 4. Create inside the LabConfig Key a ByPassTPMCheck DWORD (32-bit) with the value of 1 Click OK after editing the value data and then close out of all of the screens. Once you click on the red x in the cor...")
  • 08:22, 1 April 2025Tube Archivist docker compose (hist | edit) ‎[2,251 bytes]Karavi (talk | contribs) (Created page with "Create a docker-compose.yml file similar to this: version: '3.5' services: tubearchivist: container_name: tubearchivist restart: unless-stopped image: bbilly1/tubearchivist ports: - 8000:8000 volumes: - ./media:/youtube - ./cache:/cache environment: - ES_URL=http://archivist-es:9200 # needs protocol e.g. http and port - REDIS_CON=redis://archivist-redis:6379 - HOST_UID=1000 - HOST_G...")
  • 13:56, 30 March 2025Guacamole docker compose (hist | edit) ‎[2,854 bytes]Karavi (talk | contribs) (Created page with " Create the ${HOME}/docker-stack/guacamole/docker-compose.yml file: # networks # create a network 'guacnetwork_compose' in mode 'bridged' networks: guacnetwork_compose: driver: bridge # services services: # guacd guacd: container_name: guacd_compose image: guacamole/guacd networks: - guacnetwork_compose restart: always volumes: - ./drive:/drive:rw - ./record:/record:rw # postgres postgres: contai...")
  • 12:19, 30 March 2025WireGuard docker compose (hist | edit) ‎[2,506 bytes]Karavi (talk | contribs) (Created page with " Docker Compose File (docker-compose.yml) version: '3.8' services: wg-easy: image: ghcr.io/wg-easy/wg-easy # The Docker image to use. container_name: wg-easy # Name of the container. environment: # Environment variables to configure the instance. - LANG=en # Language settings. - WG_HOST=<Your IP/Domain> # Public IP or domain name where WG-Easy is accessible. - PASSWORD_HASH='<...")
  • 09:44, 30 March 2025ShellNGN docker compose (hist | edit) ‎[523 bytes]Karavi (talk | contribs) (Created page with "Shell NGN has an official PRO image in the hub, and it is maintained by the official team. Below is the docker-compose sample that you can alter if you want (ports, volume name, container, etc), or run it as it is. version: "3.5" services: shellngn: image: shellngn/pro network_mode: "bridge" container_name: shellngn ports: - "8080:8080" volumes: - shellngn-data:/home/node/server/data environment: - HOST=0.0.0.0...")
  • 09:31, 30 March 2025Shlink docker compose (hist | edit) ‎[1,027 bytes]Karavi (talk | contribs) (Created page with " Formable's Shlink Portainer stack docker-compose.yml version: "3" services: shlink: image: shlinkio/shlink:stable restart: always environment: - TZ="America/New_York" - DEFAULT_DOMAIN=a.formable.app - IS_HTTPS_ENABLED=true - GEOLITE_LICENSE_KEY= - DB_DRIVER=maria - DB_USER=shlink - DB_NAME=shlink - DB_PASSWORD=shlink - DB_HOST=database depends_on: - database ports:...")
  • 09:15, 30 March 2025Matomo docker compose (hist | edit) ‎[1,036 bytes]Karavi (talk | contribs) (Created page with "make folder: mkdir matomo touch matomo/docker-compose.yml Create a docker-compose.yml file similar to this: version: "3" services: db: image: mariadb:10.11 command: --max-allowed-packet=64MB restart: always volumes: - db:/var/lib/mysql:Z environment: - MYSQL_ROOT_PASSWORD=password123* - MARIADB_AUTO_UPGRADE=1 - MARIADB_DISABLE_UPGRADE_BACKUP=1 app: image: matomo restart: always volumes: - matomo:/var...")
  • 09:07, 28 March 2025Nginx proxy manager docker compose (hist | edit) ‎[444 bytes]Karavi (talk | contribs) (Created page with "Create a docker-compose.yml file similar to this: services: app: image: 'jc21/nginx-proxy-manager:latest' restart: unless-stopped ports: - '80:80' - '81:81' - '443:443' volumes: - ./data:/data - ./letsencrypt:/etc/letsencrypt Bring up your stack by running docker-compose up -d # If using docker-compose-plugin docker compose up -d") originally created as "Nginx proxy manager docker container"
  • 09:03, 28 March 2025Docker ubuntu (hist | edit) ‎[1,228 bytes]Karavi (talk | contribs) (Created page with "command: First, update your existing list of packages: sudo apt update Next, install a few prerequisite packages which let apt use packages over HTTPS: sudo apt install apt-transport-https ca-certificates curl software-properties-common Then add the GPG key for the official Docker repository to your system: curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg Add the Docker repository to AP...")
  • 10:43, 11 January 2025Sql Shrink (hist | edit) ‎[400 bytes]Karavi (talk | contribs) (Created page with "→‎Script to shrink all databases: declare @db varchar(255) declare c cursor for select name from sys.databases where is_read_only=0 and state=0 and name not in ('master','model','tempdb','msdb') open c fetch c into @db while @@fetch_status=0 begin exec SP_dboption @db,'trunc. log on chkpt.','true' DBCC shrinkdatabase (@db,10) fetch next from c into @db end close c deallocate c")
  • 10:35, 11 January 2025Sql Backup Daily (hist | edit) ‎[1,326 bytes]Karavi (talk | contribs) (Created page with " DECLARE @path VARCHAR(256) DECLARE @DBName varchar(255) DECLARE @DATABASES_Fetch int SET @path = 'E:\BANK_MS_SQL_Daily\' +CONVERT(VARCHAR(20),GETDATE(),112)+'_'+ replace(convert(varchar, getdate(),108),':','-')+'\' EXEC master.sys.xp_create_subdir @path DECLARE DATABASES_CURSOR CURSOR FOR select DATABASE_NAME = db_name(s_mf.database_id) from sys.master_files s_mf where -- ONLINE s_mf.state = 0 -- Only look at d...")