penpot: switch to stock penpot image and version 2.1.3
Do that since it now has all the fixes applied we need.
This commit is contained in:
parent
625f462221
commit
5e15381f81
|
@ -12,7 +12,7 @@ let
|
||||||
# https://help.penpot.app/technical-guide/configuration/#common
|
# https://help.penpot.app/technical-guide/configuration/#common
|
||||||
# https://github.com/penpot/penpot/commit/ea7ad2aaa096f8d190d740f693f22f3ed1f05088
|
# https://github.com/penpot/penpot/commit/ea7ad2aaa096f8d190d740f693f22f3ed1f05088
|
||||||
commonPenpotFlags = "disable-registration enable-oidc-registration disable-login-with-password enable-login-with-oidc";
|
commonPenpotFlags = "disable-registration enable-oidc-registration disable-login-with-password enable-login-with-oidc";
|
||||||
penpotVersion = "2.1.2";
|
penpotVersion = "2.1.3";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
|
@ -21,7 +21,7 @@ in
|
||||||
containers = {
|
containers = {
|
||||||
"penpot-frontend" = {
|
"penpot-frontend" = {
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
image = "git.hamburg.ccc.de/ccchh/oci-images/penpot/frontend:${penpotVersion}";
|
image = "docker.io/penpotapp/frontend:${penpotVersion}";
|
||||||
extraOptions = [ "--network=penpot" ];
|
extraOptions = [ "--network=penpot" ];
|
||||||
ports = [ "9001:80" ];
|
ports = [ "9001:80" ];
|
||||||
volumes = [ "penpot_assets:/opt/data/assets" ];
|
volumes = [ "penpot_assets:/opt/data/assets" ];
|
||||||
|
@ -39,7 +39,7 @@ in
|
||||||
|
|
||||||
"penpot-backend" = {
|
"penpot-backend" = {
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
image = "git.hamburg.ccc.de/ccchh/oci-images/penpot/backend:${penpotVersion}";
|
image = "docker.io/penpotapp/backend:${penpotVersion}";
|
||||||
extraOptions = [ "--network=penpot" ];
|
extraOptions = [ "--network=penpot" ];
|
||||||
volumes = [ "penpot_assets:/opt/data/assets" ];
|
volumes = [ "penpot_assets:/opt/data/assets" ];
|
||||||
dependsOn = [
|
dependsOn = [
|
||||||
|
@ -95,7 +95,7 @@ in
|
||||||
|
|
||||||
"penpot-exporter" = {
|
"penpot-exporter" = {
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
image = "git.hamburg.ccc.de/ccchh/oci-images/penpot/exporter:${penpotVersion}";
|
image = "docker.io/penpotapp/exporter:${penpotVersion}";
|
||||||
extraOptions = [ "--network=penpot" ];
|
extraOptions = [ "--network=penpot" ];
|
||||||
environment = {
|
environment = {
|
||||||
# https://help.penpot.app/technical-guide/configuration/#exporter
|
# https://help.penpot.app/technical-guide/configuration/#exporter
|
||||||
|
|
Loading…
Reference in a new issue