Commit 81f9311 1 parent 1d0d2ef commit 81f9311 Copy full SHA for 81f9311
File tree 5 files changed +13
-13
lines changed
5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ TAG=${TAG?Variable not set} \
7
7
FRONTEND_ENV=${FRONTEND_ENV-production} \
8
8
sh ./scripts/build.sh
9
9
10
- docker- compose -f docker-compose.yml push
10
+ docker compose -f docker-compose.yml push
Original file line number Diff line number Diff line change 5
5
6
6
TAG=${TAG?Variable not set} \
7
7
FRONTEND_ENV=${FRONTEND_ENV-production} \
8
- docker- compose \
8
+ docker compose \
9
9
-f docker-compose.yml \
10
10
build
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ DOMAIN=${DOMAIN?Variable not set} \
7
7
TRAEFIK_TAG=${TRAEFIK_TAG?Variable not set} \
8
8
STACK_NAME=${STACK_NAME?Variable not set} \
9
9
TAG=${TAG?Variable not set} \
10
- docker- compose \
10
+ docker compose \
11
11
-f docker-compose.yml \
12
12
config > docker-stack.yml
13
13
Original file line number Diff line number Diff line change 3
3
# Exit in case of error
4
4
set -e
5
5
6
- docker- compose down -v --remove-orphans # Remove possibly previous broken stacks left hanging after an error
6
+ docker compose down -v --remove-orphans # Remove possibly previous broken stacks left hanging after an error
7
7
8
8
if [ $( uname -s) = " Linux" ]; then
9
9
echo " Remove __pycache__ files"
10
10
sudo find . -type d -name __pycache__ -exec rm -r {} \+
11
11
fi
12
12
13
- docker- compose build
14
- docker- compose up -d
15
- docker- compose exec -T backend bash /app/tests-start.sh " $@ "
13
+ docker compose build
14
+ docker compose up -d
15
+ docker compose exec -T backend bash /app/tests-start.sh " $@ "
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ DOMAIN=backend \
7
7
SMTP_HOST=" " \
8
8
TRAEFIK_PUBLIC_NETWORK_IS_EXTERNAL=false \
9
9
INSTALL_DEV=true \
10
- docker- compose \
10
+ docker compose \
11
11
-f docker-compose.yml \
12
12
config > docker-stack.yml
13
13
14
- docker- compose -f docker-stack.yml build celeryworker backend
15
- docker- compose -f docker-stack.yml down -v --remove-orphans # Remove possibly previous broken stacks left hanging after an error
16
- docker- compose -f docker-stack.yml up -d db queue celeryworker backend proxy flower
17
- docker- compose -f docker-stack.yml exec -T backend bash /app/tests-start.sh " $@ "
18
- docker- compose -f docker-stack.yml down -v --remove-orphans
14
+ docker compose -f docker-stack.yml build celeryworker backend
15
+ docker compose -f docker-stack.yml down -v --remove-orphans # Remove possibly previous broken stacks left hanging after an error
16
+ docker compose -f docker-stack.yml up -d db queue celeryworker backend proxy flower
17
+ docker compose -f docker-stack.yml exec -T backend bash /app/tests-start.sh " $@ "
18
+ docker compose -f docker-stack.yml down -v --remove-orphans
You can’t perform that action at this time.
0 commit comments