-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (22 loc) · 529 Bytes
/
Makefile
File metadata and controls
28 lines (22 loc) · 529 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
start:
@echo "Starting app..."
@docker compose up --build -d
stop:
@echo "Stopping app..."
@docker compose down
watch: start
@echo "Watching for file changes..."
@docker-compose watch
logs:
@docker-compose logs -f
create-network:
@echo "Creating network..."
@docker network create xtox-network
delete-network:
@echo "Deleting network..."
@docker network rm xtox-network
delete-data:
@echo "Deleting data..."
@docker volume rm xtox_db-data
@docker volume rm xtox_cache-data
@docker volume rm xtox_stream-data