Skip to content

Commit

Permalink
Merge branch 'main' of github.com:neuroforgede/swarmgate
Browse files Browse the repository at this point in the history
  • Loading branch information
s4ke committed Oct 7, 2024
2 parents aaa89dd + 6e4176d commit 571a1bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swarmgate/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const KNOWN_VOLUME_TYPES = ['bind', 'volume', 'tmpfs', 'npipe', 'cluster'];
const ALLOWED_VOLUME_TYPES = process.env.ALLOWED_VOLUME_TYPES?.split(',') || ['bind', 'volume', 'tmpfs', 'npipe', 'cluster'];
const ALLOW_PORT_EXPOSE = process.env.ALLOW_PORT_EXPOSE === '1' || process.env.ALLOW_PORT_EXPOSE === 'true';
const SERVICE_ALLOW_LISTED_NETWORKS = process.env.SERVICE_ALLOW_LISTED_NETWORKS?.split(',') || [];
const CHECK_VOLUME_OWNERSHIP_VIA_PREFIX = (process.env.CHECK_VOLUME_OWNERSHIP_VIA_PREFIX || 'false') === 'false';
const CHECK_VOLUME_OWNERSHIP_VIA_PREFIX = process.env.CHECK_VOLUME_OWNERSHIP_VIA_PREFIX === 'true';

const tenantLabel = "com.github.neuroforgede.swarmgate.tenant";

Expand Down

0 comments on commit 571a1bd

Please sign in to comment.