@@ -54,11 +54,11 @@ This script will:
5454 ``DEJACODE_HOME=/path/to/dir bash install.sh ``
5555
56563. Create an application user
57- ------------------------------
57+ -----------------------------
5858
5959::
6060
61- dejacode createsuperuser
61+ dejacode exec web ./manage.py createsuperuser
6262
6363Follow the prompt instructions, providing the required information:
6464
@@ -67,7 +67,7 @@ Follow the prompt instructions, providing the required information:
6767- **Strong Password **: Create a password following security guidelines.
6868
69694. Access the application
70- --------------------------
70+ -------------------------
7171
7272.. admonition :: Congratulations!
7373 :class: tip
@@ -82,6 +82,31 @@ Follow the prompt instructions, providing the required information:
8282 The pre-built image always corresponds to the most recent release and is tagged
8383 ``latest ``.
8484
85+ .. _dejacode_command :
86+
87+ Managing your installation
88+ --------------------------
89+
90+ The ``dejacode `` command is a thin wrapper around ``docker compose ``. All standard
91+ ``docker compose `` subcommands work directly::
92+
93+ dejacode up -d # start all services in the background
94+ dejacode down # stop and remove containers
95+ dejacode restart # restart all services
96+ dejacode ps # show service status
97+ dejacode logs -f # follow all logs
98+ dejacode logs -f web # follow logs for a specific service
99+ dejacode pull # pull the latest image
100+ dejacode exec web ./manage.py createsuperuser
101+
102+ To update DejaCode to the latest release::
103+
104+ dejacode pull && dejacode up -d
105+
106+ To completely remove DejaCode and all its data::
107+
108+ dejacode uninstall
109+
85110.. _run_with_docker_build :
86111
87112Run with Docker — build from source
0 commit comments