This commit is contained in:
artemsaga
2023-12-20 19:10:17 +03:00
parent 88a676f6fb
commit cd2be9a53a
5 changed files with 10062 additions and 0 deletions

20
Makefile Normal file
View File

@ -0,0 +1,20 @@
up: docker-up
down: docker-down
restart: docker-down docker-up
init: docker-down docker-pull docker-build docker-up assets-install
docker-up:
docker compose -f ./docker-compose.yml --compatibility up -d
docker-down:
docker compose -f ./docker-compose.yml down --remove-orphans
docker-pull:
docker compose -f ./docker-compose.yml pull
docker-build:
docker compose -f ./docker-compose.yml build
assets-install:
docker-compose run --rm node yarn install
docker-compose run --rm node yarn run build