Skip to content

Commit 0525afb

Browse files
committed
feat(web): make build configuration optional in service config
1 parent 90702f5 commit 0525afb

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

web/src/pages/docker-compose/docker-compose.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
DockerComposeValidationError,
1212
INetworkConfig,
1313
TDockerCompose,
14-
TNetworkDockerCompose,
1514
} from './docker-compose.type';
1615
import { cn } from '@/lib/utils';
1716
import ServiceNetworkFields from './components/service-network-fields';

web/src/pages/docker-compose/docker-compose.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface IBuildConfig {
1010

1111
interface IServiceConfig {
1212
[key: string]: {
13-
build: IBuildConfig;
13+
build?: IBuildConfig;
1414
image: string;
1515
environment: {
1616
[key: string]: string;

0 commit comments

Comments
 (0)