remove bitwarden container
This commit is contained in:
parent
2b8b18dc22
commit
0ee94132d4
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
||||||
result
|
result
|
||||||
**/dist-newstyle
|
**/dist-newstyle
|
||||||
**/settings.env
|
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
# Bitwarden
|
|
||||||
virtualisation.oci-containers.containers."bitwarden" = {
|
|
||||||
autoStart = true;
|
|
||||||
image = "bitwarden/self-host:beta";
|
|
||||||
volumes = [
|
|
||||||
"/srv/containers/bitwarden:/etc/bitwarden"
|
|
||||||
];
|
|
||||||
ports = [ "8484:8080" ];
|
|
||||||
environmentFiles = [
|
|
||||||
/etc/nixos/nixos/lavender/containers/bitwarden/settings.env
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,70 +0,0 @@
|
||||||
#####################
|
|
||||||
# Required Settings #
|
|
||||||
#####################
|
|
||||||
|
|
||||||
# Server hostname
|
|
||||||
BW_DOMAIN=bitwarden.yourdomain.com
|
|
||||||
|
|
||||||
# Database
|
|
||||||
# Available providers are sqlserver, postgresql, mysql/mariadb, or sqlite
|
|
||||||
BW_DB_PROVIDER=mysql
|
|
||||||
BW_DB_SERVER=db
|
|
||||||
BW_DB_DATABASE=bitwarden_vault
|
|
||||||
BW_DB_USERNAME=bitwarden
|
|
||||||
BW_DB_PASSWORD=super_strong_password
|
|
||||||
|
|
||||||
# Installation information
|
|
||||||
# Get your ID and key from https://bitwarden.com/host/
|
|
||||||
BW_INSTALLATION_ID=00000000-0000-0000-0000-000000000000
|
|
||||||
BW_INSTALLATION_KEY=xxxxxxxxxxxx
|
|
||||||
|
|
||||||
#####################
|
|
||||||
# Optional Settings #
|
|
||||||
#####################
|
|
||||||
# Learn more here: https://bitwarden.com/help/environment-variables/
|
|
||||||
|
|
||||||
# Container user ID/group ID
|
|
||||||
#PUID=1000
|
|
||||||
#PGID=1000
|
|
||||||
|
|
||||||
# Webserver ports
|
|
||||||
#BW_PORT_HTTP=8080
|
|
||||||
#BW_PORT_HTTPS=8443
|
|
||||||
|
|
||||||
# SSL
|
|
||||||
#BW_ENABLE_SSL=true
|
|
||||||
#BW_ENABLE_SSL_CA=true
|
|
||||||
#BW_SSL_CERT=ssl.crt
|
|
||||||
#BW_SSL_KEY=ssl.key
|
|
||||||
#BW_SSL_CA_CERT=ca.crt
|
|
||||||
|
|
||||||
# Services
|
|
||||||
# Some services, namely for enterprise use cases, are disabled by default. Defaults shown below.
|
|
||||||
#BW_ENABLE_ADMIN=true
|
|
||||||
#BW_ENABLE_API=true
|
|
||||||
#BW_ENABLE_EVENTS=false
|
|
||||||
#BW_ENABLE_ICONS=true
|
|
||||||
#BW_ENABLE_IDENTITY=true
|
|
||||||
#BW_ENABLE_NOTIFICATIONS=true
|
|
||||||
#BW_ENABLE_SCIM=false
|
|
||||||
#BW_ENABLE_SSO=false
|
|
||||||
|
|
||||||
#BW_ICONS_PROXY_TO_CLOUD=false
|
|
||||||
|
|
||||||
# Mail
|
|
||||||
#globalSettings__mail__replyToEmail=noreply@$BW_DOMAIN
|
|
||||||
#globalSettings__mail__smtp__host=smtphost.example.com
|
|
||||||
#globalSettings__mail__smtp__port=587
|
|
||||||
#globalSettings__mail__smtp__ssl=false
|
|
||||||
#globalSettings__mail__smtp__username=smtpusername
|
|
||||||
#globalSettings__mail__smtp__password=smtppassword
|
|
||||||
|
|
||||||
# Yubikey
|
|
||||||
#globalSettings__yubico__clientId=REPLACE
|
|
||||||
#globalSettings__yubico__key=REPLACE
|
|
||||||
|
|
||||||
# Other
|
|
||||||
#globalSettings__disableUserRegistration=false
|
|
||||||
#globalSettings__hibpApiKey=REPLACE
|
|
||||||
#adminSettings__admins=admin1@email.com,admin2@email.com
|
|
||||||
|
|
|
@ -2,30 +2,16 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# Dashboard
|
|
||||||
./homepage
|
./homepage
|
||||||
|
|
||||||
# Website
|
|
||||||
./nginx
|
./nginx
|
||||||
|
|
||||||
# Dns blackhole
|
|
||||||
./pihole
|
./pihole
|
||||||
|
|
||||||
# Multimedia
|
|
||||||
./plex
|
./plex
|
||||||
./sonarr
|
./sonarr
|
||||||
./radarr
|
./radarr
|
||||||
./prowlarr
|
./prowlarr
|
||||||
./recyclarr
|
./recyclarr
|
||||||
|
|
||||||
# Documents & Files
|
|
||||||
./qbittorrent
|
./qbittorrent
|
||||||
./bitwarden
|
|
||||||
|
|
||||||
# Game servers
|
|
||||||
./minecraft
|
./minecraft
|
||||||
|
|
||||||
# Reverse proxy
|
|
||||||
./traefik
|
./traefik
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue