1
1
Fork 0

containers: use explicit port proto

This commit is contained in:
Myned 2025-03-22 13:45:26 -05:00
parent 170f63a0cd
commit 148b64620a
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: C7224454F7881A34
2 changed files with 2 additions and 2 deletions
options/custom/containers

View file

@ -21,7 +21,7 @@ in {
freshrss.service = {
container_name = "freshrss";
image = "freshrss/freshrss:1";
ports = ["127.0.0.1:8088:80"];
ports = ["127.0.0.1:8088:80/tcp"];
restart = "unless-stopped";
environment = {

View file

@ -32,7 +32,7 @@ in {
depends_on = ["db"];
env_file = [config.age.secrets."${config.custom.profile}/miniflux/.env".path];
image = "miniflux/miniflux:2.2.6";
ports = ["127.0.0.1:8808:8080"];
ports = ["127.0.0.1:8808:8080/tcp"];
restart = "unless-stopped";
volumes = ["${config.custom.containers.directory}/miniflux/data:/data"];
};