You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker run -it --rm -p 80:3000 my-hello-world# ctrl-c to exit
63
+
docker exec -it my-hello-world bash# ctrl-d to exit
64
64
65
65
# docker-compose
66
66
docker-compose build --no-cache --parallel
67
67
docker-compose up -d
68
68
docker-compose down --remove-orphans
69
69
70
70
# justfile
71
-
just # list all options
71
+
just # list all options
72
72
## docker
73
-
just run # ctrl-c to exit
74
-
just exec# ctrl-d to exit
73
+
just run # ctrl-c to exit
74
+
just exec# ctrl-d to exit
75
75
## docker-compose
76
-
just build-clean # docker-compose build --no-cache --parallel
77
-
just up # docker-compose up -d
78
-
just down # docker-compose down --remove-orphans
76
+
just build-clean # docker-compose build --no-cache --parallel
77
+
just up # docker-compose up -d
78
+
just down # docker-compose down --remove-orphans
79
79
```
80
80
#### Clicky-clicky
81
81
Copy the `.env.example` file to `.env` and modify the values as needed.
@@ -103,4 +103,4 @@ Automated CI is implemented via GitHub Actions to build and push this repository
103
103
[Instructions to disable this action](https://docs.github.com/en/actions/managing-workflow-runs/disabling-and-enabling-a-workflow) if you don't want this feature.
0 commit comments