22 lines
345 B
Makefile
22 lines
345 B
Makefile
|
|
DOCKER_COMPOSE := COMPOSE_MENU=0 docker compose --env-file ./env
|
|
|
|
|
|
default: up
|
|
|
|
|
|
up: env
|
|
$(DOCKER_COMPOSE) up
|
|
|
|
build:
|
|
$(DOCKER_COMPOSE) build
|
|
|
|
env:
|
|
@echo "Please copy env.in to env and edit the contents to what you need."
|
|
@false
|
|
|
|
signalbash:
|
|
$(DOCKER_COMPOSE) run --rm signal-cli bash
|
|
|
|
import_factoids:
|
|
$(DOCKER_COMPOSE) run --rm init-db
|