mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-13 08:08:57 -05:00
fix bank sync issues with actualbudget
This commit is contained in:
parent
3a444f8b73
commit
92049950e2
1 changed files with 4 additions and 4 deletions
|
|
@ -62,7 +62,7 @@ in
|
|||
# ACTUAL_OPENID_CLIENT_SECRET=${config.sops.placeholder."actualbudget/client-secret"}
|
||||
# ACTUAL_OPENID_SERVER_HOSTNAME=https://budget.wanderingcrow.net
|
||||
"actualbudget-env".content = ''
|
||||
ACTUAL_PORT=80
|
||||
ACTUAL_PORT=${serverPort}
|
||||
'';
|
||||
"actualbudget-api-env".content = ''
|
||||
ACTUAL_SERVER_URL=https://budget.wanderingcrow.net
|
||||
|
|
@ -99,8 +99,8 @@ in
|
|||
image = "actualbudget/actual-server:26.2.0";
|
||||
volumes = [ "${volumePath}/actualbudget:/data" ];
|
||||
environmentFiles = [ config.sops.templates."actualbudget-env".path ];
|
||||
publishPorts = [
|
||||
"${serverPort}:80"
|
||||
networks = [
|
||||
"host"
|
||||
];
|
||||
};
|
||||
actualbudget-api.containerConfig = {
|
||||
|
|
@ -108,7 +108,7 @@ in
|
|||
volumes = [ "${volumePath}/actualbudget-api:/data" ];
|
||||
environmentFiles = [ config.sops.templates."actualbudget-api-env".path ];
|
||||
publishPorts = [
|
||||
"${serverPort}:5006"
|
||||
"${apiPort}:5006"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue