Use docker compose, not docker-compose.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
175f0438d4
commit
390954ebaf
4
Makefile
4
Makefile
|
@ -1,4 +1,4 @@
|
||||||
DOCKER_COMPOSE = COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 venv/bin/docker-compose
|
DOCKER_COMPOSE = COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose
|
||||||
DOCKER_RUN = ${DOCKER_COMPOSE} run -u `id -u`
|
DOCKER_RUN = ${DOCKER_COMPOSE} run -u `id -u`
|
||||||
DOCKER_BUILD = DOCKER_BUILDKIT=1 docker build
|
DOCKER_BUILD = DOCKER_BUILDKIT=1 docker build
|
||||||
DOCKER_CONTAINER_NAME = backend
|
DOCKER_CONTAINER_NAME = backend
|
||||||
|
@ -14,7 +14,7 @@ setup_venv:
|
||||||
rm -rf venv
|
rm -rf venv
|
||||||
python3.11 -m venv venv;
|
python3.11 -m venv venv;
|
||||||
venv/bin/python -m pip install wheel setuptools;
|
venv/bin/python -m pip install wheel setuptools;
|
||||||
venv/bin/python -m pip install docker-compose pre-commit boto3 pip-tools;
|
venv/bin/python -m pip install pre-commit boto3 pip-tools;
|
||||||
|
|
||||||
pre_commit_install:
|
pre_commit_install:
|
||||||
venv/bin/pre-commit install
|
venv/bin/pre-commit install
|
||||||
|
|
Loading…
Reference in a new issue