init
11
compose/homeassistant/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
||||
services:
|
||||
homeassistant:
|
||||
container_name: homeassistant
|
||||
image: "ghcr.io/home-assistant/home-assistant:stable"
|
||||
volumes:
|
||||
#- /PATH_TO_YOUR_CONFIG:/config
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /run/dbus:/run/dbus:ro
|
||||
restart: unless-stopped
|
||||
privileged: true
|
||||
network_mode: host
|
||||
16
compose/minecraft-paper/docker-compose.yaml
Normal file
@ -0,0 +1,16 @@
|
||||
version: "4"
|
||||
services:
|
||||
minecraft:
|
||||
image: marctv/minecraft-papermc-server:latest
|
||||
container_name: mcserver
|
||||
restart: always
|
||||
environment:
|
||||
MEMORYSIZE: "2G"
|
||||
PAPERMC_FLAGS: ""
|
||||
volumes:
|
||||
- "./server:/data:rw"
|
||||
ports:
|
||||
- "25565:25565"
|
||||
stdin_open: true
|
||||
tty: true
|
||||
|
||||
12
compose/nginx-proxy-manager/docker-compose.yaml
Normal file
@ -0,0 +1,12 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
app:
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '80:80'
|
||||
- '81:81'
|
||||
- '443:443'
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./letsencrypt:/etc/letsencrypt
|
||||
9
compose/nginx/docker-compose.yaml
Normal file
@ -0,0 +1,9 @@
|
||||
version: "3"
|
||||
services:
|
||||
website:
|
||||
image: nginx:alpine
|
||||
ports:
|
||||
- "8080:80"
|
||||
restart: always
|
||||
volumes:
|
||||
- ./src/:/usr/share/nginx/html
|
||||
22
compose/nginx/src/contact.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css"/>
|
||||
</head>
|
||||
</body>
|
||||
<div class="sidenav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="resume.pdf" target="blank">Resume</a>
|
||||
</div>
|
||||
<div class="main">
|
||||
<h1>Contact Info</h1>
|
||||
<h2>Phone #: 425-553-7229</h2>
|
||||
<h2>School email (2022-2026): nikjo04@uw.edu</h2>
|
||||
<h2>Personal email: niklasjo2004@gmail.com</h2>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
20
compose/nginx/src/gigachad.html
Normal file
@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="sidenav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="resume.pdf">Resume</a>
|
||||
</div>
|
||||
<div class="main">
|
||||
<h1>This is my current physical appearance</h1>
|
||||
<img src="maxresdefault.jpg">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
20
compose/nginx/src/index.html
Normal file
@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<script src="main.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="sidenav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="resume.pdf" target="blank">Resume</a>
|
||||
</div>
|
||||
<div class="main">
|
||||
<h1>Nik Johnson</h1>
|
||||
<h3>Atmospheric Sciences at UW Seattle | 2022-2026</h3>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
5
compose/nginx/src/main.js
Normal file
@ -0,0 +1,5 @@
|
||||
// document.getElementById("demo").innerHTML = x + y;
|
||||
|
||||
// console.log(document.getElementById("balls"))
|
||||
// console.log(document.getElementsByClassName("main")[0]);
|
||||
// document.getElementsByClassName("main")[0].children[0].innerHTML = "BALLS BALLS BALLS"
|
||||
BIN
compose/nginx/src/maxresdefault.jpg
Normal file
|
After Width: | Height: | Size: 54 KiB |
14
compose/nginx/src/resume.html
Normal file
@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="main">
|
||||
<iframe src="resume.pdf" width="100%" height="1000px"></iframe>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
compose/nginx/src/resume.pdf
Normal file
43
compose/nginx/src/style.css
Normal file
@ -0,0 +1,43 @@
|
||||
body {
|
||||
font-family: 'Courier New';
|
||||
}
|
||||
|
||||
.sidenav {
|
||||
height: 100%;
|
||||
width: 150px;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: #111;
|
||||
overflow-x: hidden;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.sidenav a {
|
||||
padding: 6px 8px 6px 16px;
|
||||
text-decoration: none;
|
||||
font-size: 25px;
|
||||
color: #818181;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sidenav a:hover {
|
||||
color: #f1f1f1;
|
||||
}
|
||||
|
||||
.main {
|
||||
margin-left: 150px;
|
||||
font-size: 28px;
|
||||
padding: 0px 10px;
|
||||
}
|
||||
|
||||
@media screen and (max-height: 450px) {
|
||||
.sidenav {
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
.sidenav a {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
11
compose/open-webui/docker-compose.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
services:
|
||||
open_webui:
|
||||
container_name: open_webui
|
||||
image: ghcr.io/open-webui/open-webui:main
|
||||
restart: always
|
||||
ports:
|
||||
- "3000:8080/tcp"
|
||||
environment:
|
||||
OLLAMA_BASE_URL: "http://10.100.1.10:11434"
|
||||
volumes:
|
||||
- "./data:/app/backend/data"
|
||||
BIN
compose/pihole/.DS_Store
vendored
Normal file
26
compose/pihole/docker-compose.yaml
Normal file
@ -0,0 +1,26 @@
|
||||
version: "3"
|
||||
|
||||
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
||||
services:
|
||||
pihole:
|
||||
container_name: pihole
|
||||
image: pihole/pihole:latest
|
||||
hostname: pihole
|
||||
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
|
||||
ports:
|
||||
- "53:53/tcp"
|
||||
- "53:53/udp"
|
||||
- "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
|
||||
- "80:80/tcp"
|
||||
environment:
|
||||
TZ: 'America/Chicago'
|
||||
WEBPASSWORD: '946731'
|
||||
# Volumes store your data between container upgrades
|
||||
volumes:
|
||||
- './etc-pihole:/etc/pihole'
|
||||
- './etc-dnsmasq.d:/etc/dnsmasq.d'
|
||||
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
|
||||
cap_add:
|
||||
- NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed
|
||||
restart: unless-stopped
|
||||
|
||||
14
compose/terraria/docker-compose.yaml
Normal file
@ -0,0 +1,14 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
terraria:
|
||||
image: ghcr.io/beardedio/terraria:latest
|
||||
ports:
|
||||
- '7777:7777'
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- world=nuctest.wld
|
||||
volumes:
|
||||
- ./server/:/config
|
||||
tty: true
|
||||
stdin_open: true
|
||||
0
compose/terraria/server/banlist.txt
Normal file
97
compose/terraria/server/serverconfig.txt
Normal file
@ -0,0 +1,97 @@
|
||||
#this is an example config file for TerrariaServer.exe
|
||||
#use the command 'TerrariaServer.exe -config serverconfig.txt' to use this configuration or run start-server.bat
|
||||
#please report crashes by emailing crashlog.txt to support@terraria.org
|
||||
|
||||
#the following is a list of available command line parameters:
|
||||
|
||||
#-config <config file> Specifies the configuration file to use.
|
||||
#-port <port number> Specifies the port to listen on.
|
||||
#-players <number> / -maxplayers <number> Sets the max number of players
|
||||
#-pass <password> / -password <password> Sets the server password
|
||||
#-world <world file> Load a world and automatically start the server.
|
||||
#-autocreate <#> Creates a world if none is found in the path specified by -world. World size is specified by: 1(small), 2(medium), and 3(large).
|
||||
#-banlist <path> Specifies the location of the banlist. Defaults to "banlist.txt" in the working directory.
|
||||
#-worldname <world name> Sets the name of the world when using -autocreate.
|
||||
#-secure Adds addition cheat protection to the server.
|
||||
#-noupnp Disables automatic port forwarding
|
||||
#-steam Enables Steam Support
|
||||
#-lobby <friends> or <private> Allows friends to join the server or sets it to private if Steam is enabled
|
||||
#-ip <ip address> Sets the IP address for the server to listen on
|
||||
#-forcepriority <priority> Sets the process priority for this task. If this is used the "priority" setting below will be ignored.
|
||||
#-disableannouncementbox Disables the text announcements Announcement Box makes when pulsed from wire.
|
||||
#-announcementboxrange <number> Sets the announcement box text messaging range in pixels, -1 for serverwide announcements.
|
||||
#-seed <seed> Specifies the world seed when using -autocreate
|
||||
|
||||
#remove the # in front of commands to enable them.
|
||||
|
||||
#Load a world and automatically start the server.
|
||||
#world=C:\Users\YOUR_USERNAME_HERE\My Documents\My Games\Terraria\Worlds\world1.wld
|
||||
|
||||
#Creates a new world if none is found. World size is specified by: 1(small), 2(medium), and 3(large).
|
||||
#autocreate=1
|
||||
|
||||
#Sets the world seed when using autocreate
|
||||
#seed=AwesomeSeed
|
||||
|
||||
#Sets the name of the world when using autocreate
|
||||
#worldname=Terraria
|
||||
|
||||
#Sets the difficulty of the world when using autocreate 0(classic), 1(expert), 2(master), 3(journey)
|
||||
#difficulty=0
|
||||
|
||||
#Sets the max number of players allowed on a server. Value must be between 1 and 255
|
||||
#maxplayers=8
|
||||
|
||||
#Set the port number
|
||||
#port=7777
|
||||
|
||||
#Set the server password
|
||||
#password=p@55w0rd
|
||||
|
||||
#Set the message of the day
|
||||
#motd=Please don<6F>t cut the purple trees!
|
||||
|
||||
#Sets the folder where world files will be stored
|
||||
#worldpath=C:\Users\Defaults\My Documents\My Games\Terraria\Worlds\
|
||||
|
||||
#Sets the number of rolling world backups to keep
|
||||
#worldrollbackstokeep=2
|
||||
|
||||
#The location of the banlist. Defaults to "banlist.txt" in the working directory.
|
||||
#banlist=banlist.txt
|
||||
|
||||
#Adds addition cheat protection.
|
||||
#secure=1
|
||||
|
||||
#Sets the server language from its language code.
|
||||
#English = en-US, German = de-DE, Italian = it-IT, French = fr-FR, Spanish = es-ES, Russian = ru-RU, Chinese = zh-Hans, Portuguese = pt-BR, Polish = pl-PL,
|
||||
#language=en-US
|
||||
|
||||
#Automatically forward ports with uPNP
|
||||
#upnp=1
|
||||
|
||||
#Reduces enemy skipping but increases bandwidth usage. The lower the number the less skipping will happen, but more data is sent. 0 is off.
|
||||
#npcstream=60
|
||||
|
||||
#Default system priority 0:Realtime, 1:High, 2:AboveNormal, 3:Normal, 4:BelowNormal, 5:Idle
|
||||
priority=1
|
||||
|
||||
#Reduces maximum liquids moving at the same time. If enabled may reduce lags but liquids may take longer to settle.
|
||||
#slowliquids=1
|
||||
|
||||
#Journey mode power permissions for every individual power. 0: Locked for everyone, 1: Can only be changed by host, 2: Can be changed by everyone
|
||||
#journeypermission_time_setfrozen=2
|
||||
#journeypermission_time_setdawn=2
|
||||
#journeypermission_time_setnoon=2
|
||||
#journeypermission_time_setdusk=2
|
||||
#journeypermission_time_setmidnight=2
|
||||
#journeypermission_godmode=2
|
||||
#journeypermission_wind_setstrength=2
|
||||
#journeypermission_rain_setstrength=2
|
||||
#journeypermission_time_setspeed=2
|
||||
#journeypermission_rain_setfrozen=2
|
||||
#journeypermission_wind_setfrozen=2
|
||||
#journeypermission_increaseplacementrange=2
|
||||
#journeypermission_setdifficulty=2
|
||||
#journeypermission_biomespread_setfrozen=2
|
||||
#journeypermission_setspawnrate=2
|
||||
38
compose/tmodloader/docker-compose.yaml
Normal file
@ -0,0 +1,38 @@
|
||||
version: '3'
|
||||
services:
|
||||
tmodloader:
|
||||
restart: unless-stopped
|
||||
#stdin_open: true
|
||||
image: 'jacobsmile/tmodloader1.4:latest'
|
||||
container_name: 'tmodloader'
|
||||
ports:
|
||||
- "7777:7777"
|
||||
expose:
|
||||
- "7777"
|
||||
environment:
|
||||
# Download mods.
|
||||
- "TMOD_AUTODOWNLOAD=2669644269,2824688266,2824688072,2816694149,2669670918,2908170107,2563309347,2619954303,2909886416,3106201538"
|
||||
# Enable mods.
|
||||
- "TMOD_ENABLEDMODS=2669644269,2824688266,2824688072,2816694149,2669670918,2908170107,2563309347,2619954303,2909886416,3106201538"
|
||||
# Shutdown Message and Autosave Interval (In Minutes)
|
||||
- "TMOD_SHUTDOWN_MESSAGE=Goodbye!"
|
||||
- "TMOD_AUTOSAVE_INTERVAL=15"
|
||||
# Server Settings
|
||||
- "TMOD_MOTD=NUH UH!!!"
|
||||
- "TMOD_PASS=balls"
|
||||
- "TMOD_MAXPLAYERS=8"
|
||||
# The following world settings are only used when generating a new world.
|
||||
- "TMOD_WORLDNAME=boner"
|
||||
- "TMOD_WORLDSIZE=3"
|
||||
- "TMOD_WORLDSEED=balls"
|
||||
- "TMOD_DIFFICULTY=1"
|
||||
- "TMOD_NPCSTREAM=30"
|
||||
# (Deprecated) If TMOD_USECONFIGFILE is set to "Yes", it is expected to have a serverconfig.txt mapped. The Server Settings above will be ignored.
|
||||
- "TMOD_USECONFIGFILE=No"
|
||||
- "UPDATE_NOTICE=false"
|
||||
|
||||
volumes:
|
||||
#### By default, the below setting will create a data directory on your host where this compose file lives.
|
||||
- "./server:/data"
|
||||
# Uncomment the below line if you plan to use a mapped config file.
|
||||
#- "/path/to/config/config.txt:/root/terraria-server/serverconfig.txt"
|
||||
9
compose/vaultwarden/docker-compose.yaml
Normal file
@ -0,0 +1,9 @@
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server
|
||||
container_name: vaultwarden
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- "./vw_data/:/data/"
|
||||
ports:
|
||||
- "9090:80"
|
||||
BIN
compose/vaultwarden/vw_data/db.sqlite3
Normal file
BIN
compose/vaultwarden/vw_data/db.sqlite3-shm
Normal file
BIN
compose/vaultwarden/vw_data/db.sqlite3-wal
Normal file
BIN
compose/vaultwarden/vw_data/icon_cache/9animetv.to.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/account.cengage.com.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/account.ubisoft.com.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/account.ui.com.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/account.wolfram.com.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/accounts.autodesk.com.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/accounts.firefox.com.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/accounts.google.com.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/accounts.nintendo.com.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/accounts.pixiv.net.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/accounts.spotify.com.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/admissions.uwb.edu.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/allstate.com.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/app.myirmobile.com.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/app.stash.com.png
Normal file
|
After Width: | Height: | Size: 605 B |
BIN
compose/vaultwarden/vw_data/icon_cache/apple.com.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/auth.23andme.com.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/auth.edgenuity.com.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/auth.rec.net.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 15 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/auth.starlink.com.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/auth.ticketmaster.com.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/bandcamp.com.png
Normal file
|
After Width: | Height: | Size: 919 B |
BIN
compose/vaultwarden/vw_data/icon_cache/bitwarden.com.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/care.siriusxm.com.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/creditkarma.com.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/dash.cloudflare.com.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/discord.com.png
Normal file
|
After Width: | Height: | Size: 557 B |
BIN
compose/vaultwarden/vw_data/icon_cache/discordapp.com.png
Normal file
|
After Width: | Height: | Size: 557 B |
BIN
compose/vaultwarden/vw_data/icon_cache/edstem.org.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/edupoint.com.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/fishhunt.dfw.wa.gov.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/frame.work.png
Normal file
|
After Width: | Height: | Size: 754 B |
BIN
compose/vaultwarden/vw_data/icon_cache/funimation.com.png
Normal file
|
After Width: | Height: | Size: 617 B |
BIN
compose/vaultwarden/vw_data/icon_cache/git.galacticpants.net.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/github.com.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 40 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/gopro.com.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/grabcad.com.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/hub.docker.com.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/idp.u.washington.edu.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/ifttt.com.png
Normal file
|
After Width: | Height: | Size: 404 B |
BIN
compose/vaultwarden/vw_data/icon_cache/instagram.com.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/login.amtrak.com.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/login.docker.com.png
Normal file
|
After Width: | Height: | Size: 586 B |
BIN
compose/vaultwarden/vw_data/icon_cache/login.live.com.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 17 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/login.pearson.com.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/mcare.siriusxm.com.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/modrinth.com.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/my.ciee.org.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/my.cigna.com.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
compose/vaultwarden/vw_data/icon_cache/myliftmaster.com.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 88 KiB |