We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4328b0 commit b7fa543Copy full SHA for b7fa543
Makefile
@@ -18,19 +18,19 @@ commands :
18
19
## build : build files but do not run a server.
20
build :
21
- docker-compose build --pull
+ docker compose build --pull
22
23
## serve : start and run a local server.
24
serve : build
25
- @docker-compose run --rm --service-ports --user="${UID}:${GID}" hugo
+ @docker compose up -d
26
27
## shell : open a hugo shell
28
shell : build
29
- docker-compose run --rm --user="${UID}:${GID}" hugo shell
+ docker compose run --rm hugo shell
30
31
## stop : stop the docker server and clean up
32
stop :
33
- docker-compose down -v
+ docker compose down -v
34
35
## clean : clean up junk files.
36
clean :
0 commit comments