Command-line reference

Common commands for operating the stack. Run them from the deployment directory.

Compose

docker compose up -d db app          # start database + application
docker compose ps                    # what's running
docker compose logs -f app           # follow application logs
docker compose restart app           # restart the application
docker compose down                  # stop everything

Manage a workspace database

Initialize or update apps on a specific workspace database by running the application binary inside its container with the database name and the apps to install (-i) or update (-u). Always back up before updating.

Database tooling

docker compose exec db psql -U <db_user> <workspace_db>     # open a SQL shell
docker compose exec db pg_dump -U <db_user> <workspace_db>  # dump a database

Configuration

Server settings live in the application config file (workers, the database filter, the database-list toggle) and in your environment file (credentials, domain, provider keys). See Deploy.

Note

Replace <db_user> and <workspace_db> with your real values. Keep credentials in your environment file, never in scripts you commit.

Need a hand with this? company@everjust.co — a human answers.