Skip to content

Commit 49f46e1

Browse files
Removed docker-compose --build option from start for speedup, fixed workers for non-initialized machine
1 parent 4898e15 commit 49f46e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/scale.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
required=True,
1414
)
1515
def scale(service):
16-
command = ['up', '-d', '--no-recreate', '--no-build']
16+
command = ['up', '-d', '--no-recreate']
1717
services = []
1818
for name, instances in service:
1919
command.append('--scale')

cli/start.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
@with_workers_option
1111
def start(workers, **_kwargs):
1212
click.echo(f'Using Forcad:{VERSION}')
13-
run_docker(['up', '--build', '-d', '--scale', f'celery={workers}'])
13+
run_docker(['up', '-d', '--scale', f'celery={workers}'])

0 commit comments

Comments
 (0)