-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
50 lines (47 loc) · 1.43 KB
/
makefile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.PHONY: \
all \
podman.all \
podman.clean \
podman.create_pod \
podman.build_web_container \
symfony.all \
symfony.create_db \
symfony.schema_up \
symfony.fixtures
all: \
podman.all \
symfony.all
podman.clean:
podman pod rm -f my-project-pod
podman.create_pod:
podman pod create --name my-project-pod -p 8080:80
podman.build_web_container:
podman build -t web:latest -f container/Dockerfile
podman.run_containers:
podman run --name=my-web-base -d \
-v `pwd`:/var/www/html/app:Z --pod=my-project-pod \
localhost/web:latest
podman run --name=nginx -d \
-v `pwd`:/var/www/html/app:Z --pod=my-project-pod \
-v `pwd`/container/site.conf:/etc/nginx/conf.d/default.conf:Z \
docker.io/library/nginx
podman run --name="my-db" -d --pod=my-project-pod \
-e MYSQL_ROOT_PASSWORD="root" -e MYSQL_DATABASE="my_project" -e MYSQL_USER="web" -e MYSQL_PASSWORD="web" \
docker.io/library/mariadb
podman.all: \
podman.clean \
podman.create_pod \
podman.build_web_container \
podman.run_containers
symfony.create_db:
echo 'DATABASE_URL="mysql://web:[email protected]/my_project?serverVersion=mariadb-10.5.8"' > .env.local
sleep 10
podman exec -it my-web-base php bin/console doc:database:create --if-not-exists
symfony.schema_up:
podman exec -it my-web-base php bin/console doc:sch:up --force
symfony.fixtures:
podman exec -it my-web-base php bin/console doc:fix:load -n
symfony.all: \
symfony.create_db \
symfony.schema_up \
symfony.fixtures