mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
Fix port
This commit is contained in:
parent
8fbcb14ebf
commit
75eed912b9
1 changed files with 3 additions and 3 deletions
|
|
@ -45,7 +45,7 @@ in
|
|||
"seedbox-lite_seedbox_data:/app/data:rw"
|
||||
];
|
||||
ports = [
|
||||
"${backend-port}:3001/tcp"
|
||||
"${toString backend-port}:3001/tcp"
|
||||
];
|
||||
log-driver = "journald";
|
||||
extraOptions = [
|
||||
|
|
@ -77,7 +77,7 @@ in
|
|||
virtualisation.oci-containers.containers."seedbox-frontend" = {
|
||||
image = "localhost/compose2nix/seedbox-frontend";
|
||||
ports = [
|
||||
"${port}:80/tcp"
|
||||
"${toString port}:80/tcp"
|
||||
];
|
||||
dependsOn = [
|
||||
"seedbox-backend"
|
||||
|
|
@ -169,7 +169,7 @@ in
|
|||
cd /tmp
|
||||
git clone https://github.com/hotheadhacker/seedbox-lite.git
|
||||
cd seedbox-lite/client
|
||||
podman build -t compose2nix/seedbox-frontend --build-arg VITE_API_BASE_URL=http://localhost:${backend-port} .
|
||||
podman build -t compose2nix/seedbox-frontend --build-arg VITE_API_BASE_URL=http://localhost:${toString backend-port} .
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue