Skip to content

Commit 3bcae82

Browse files
committed
update for aws build. docker compose
1 parent 765d9f0 commit 3bcae82

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build/build_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def process_docker(datasets):
133133
datasets_to_build.extend(dataset_map.get(dataset, []))
134134

135135
# Build the docker-compose command, adding specific datasets
136-
compose_command = ['docker', 'compose', '-f', compose_file, 'build', '--parallel'] + datasets_to_build
136+
compose_command = ['docker-compose', '-f', compose_file, 'build', '--parallel'] + datasets_to_build
137137

138138
log_file_path = 'local/docker.log'
139139
env = os.environ.copy()

build/build_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def process_docker(dataset,validate):
5757

5858
datasets_to_build.extend(dataset_map.get(dataset, []))
5959

60-
compose_command = ['docker','compose', '-f', compose_file, 'build'] + datasets_to_build
60+
compose_command = ['docker-compose', '-f', compose_file, 'build'] + datasets_to_build
6161

6262
log_file_path = 'local/docker.log'
6363
env = os.environ.copy()

0 commit comments

Comments
 (0)