- Dedicated Database: Add MariaDB ports
- Songsheet: Update the compose comments, as the database uses the dedicated database - General: Re-added Librewolf onto the module.
This commit is contained in:
parent
63a80ae88a
commit
99a0ed1719
4 changed files with 6 additions and 4 deletions
|
|
@ -158,7 +158,7 @@
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
networking.firewall.allowedTCPPorts = [5432]; # PostgreSQL default port
|
networking.firewall.allowedTCPPorts = [5432 3306]; # PostgreSQL default port
|
||||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||||
# Or disable the firewall altogether.
|
# Or disable the firewall altogether.
|
||||||
# networking.firewall.enable = false;
|
# networking.firewall.enable = false;
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,8 @@ in {
|
||||||
pkgs.httpie
|
pkgs.httpie
|
||||||
pkgs.alacritty # Terminal emulator
|
pkgs.alacritty # Terminal emulator
|
||||||
pkgs.hyfetch # Add fetching packages
|
pkgs.hyfetch # Add fetching packages
|
||||||
pkgs.macchina
|
pkgs.macchina # Other "neofetch"
|
||||||
|
pkgs.librewolf # Web browser, Firefox but better
|
||||||
pkgs.wayland # Wayland display server
|
pkgs.wayland # Wayland display server
|
||||||
pkgs.wlroots # Wayland compositor library
|
pkgs.wlroots # Wayland compositor library
|
||||||
pkgs.maple-mono.NF # Font for better terminal appearance
|
pkgs.maple-mono.NF # Font for better terminal appearance
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
# TODO Figure out a better way to manage secrets.
|
# TODO Figure out a better way to manage secrets.
|
||||||
|
# CHECK OUT https://github.com/ryantm/agenix
|
||||||
local.secrets = {
|
local.secrets = {
|
||||||
gitUserName = "Your Name";
|
gitUserName = "Your Name";
|
||||||
gitUserEmail = "you@example.com";
|
gitUserEmail = "you@example.com";
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
services:
|
services:
|
||||||
wavelog-db:
|
wavelog-db: # THIS IS NOW DANGLING BUT WILL BE THERE TO PREVENT BREAKAGE OF THE MAIN COMPOSE FILE
|
||||||
image: mariadb:11.3
|
image: mariadb:11.3
|
||||||
container_name: wavelog-db
|
container_name: wavelog-db
|
||||||
environment:
|
environment:
|
||||||
MARIADB_RANDOM_ROOT_PASSWORD: yes
|
MARIADB_RANDOM_ROOT_PASSWORD: yes
|
||||||
MARIADB_DATABASE: wavelog
|
MARIADB_DATABASE: wavelog
|
||||||
MARIADB_USER: wavelog
|
MARIADB_USER: wavelog
|
||||||
MARIADB_PASSWORD: oijawfjiojoijoiawfoij191229888dajkvhiuviuaiuhvaihuauis1123312 # THIS DATABASE WILL BE MIGRATED PROABLY - TODO CHECK OUT https://github.com/ryantm/agenix
|
MARIADB_PASSWORD: oijawfjiojoijoiawfoij191229888dajkvhiuviuaiuhvaihuauis1123312 # THIS DATABASE IS NOW MIGRATED PROPERLY
|
||||||
volumes:
|
volumes:
|
||||||
- wavelog-dbdata:/var/lib/mysql
|
- wavelog-dbdata:/var/lib/mysql
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue