Skip to content

Commit

Permalink
fix: version property is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
remie committed Nov 22, 2024
1 parent 03ac641 commit 438d404
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/applications/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ export abstract class Base implements Application {

private getDockerComposeConfig(): DockerComposeV3 {
return {
version: '3.8',
services: {
[this.name]: this.getService()
},
Expand Down
1 change: 0 additions & 1 deletion src/databases/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ export abstract class Base implements DatabaseEngine {

private getDockerComposeConfig(): DockerComposeV3 {
return {
version: '3.8',
services: {
'db': this.getService()
},
Expand Down
2 changes: 0 additions & 2 deletions src/types/DockerComposeV3.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
export {}

export type DockerComposeV3 = {

version: string;
services: Record<string, Service>;
volumes?: Record<string, Volume>;
networks?: Record<string, Network>;
Expand Down

0 comments on commit 438d404

Please sign in to comment.