Skip to content

Deploy: Docker Compose

Prerequisites

This guide assumes you have already prepared the installation environment as described in the Getting Started guide.

Once the environment is prepared, navigate to the application directory where the compose.yml file is located. Use the following command to start the deployment:

docker compose up -d

This command will launch all the necessary services defined in the compose.yml file in detached mode.

The deployment process may take a few minutes as Docker pulls the required images and starts the containers.

Status Check

You can monitor the status of the containers using the following commands:

Container Status:

docker compose ps

Container Logs:

docker compose logs -f

Once all containers are up and running, it should look similar to this:

Note

This will depend on which setup you chose. If you went with the local deployment you will see fewer services here

docker compose ps
NAME                       IMAGE                                             COMMAND                  SERVICE                    CREATED        STATUS                  PORTS
docs_rooms                 squidfunk/mkdocs-material:latest                  "sh -c 'mkdocs serve…"   docs                       3 days ago     Up 3 days               8000/tcp
dozzle_rooms               amir20/dozzle:latest                              "/dozzle"                dozzle_rooms               12 days ago    Up 3 days               8080/tcp
glances_rooms              nicolargo/glances:latest                          "/bin/sh -c '/venv/b…"   glances_rooms              12 days ago    Up 3 days               61208-61209/tcp
pgadmin_rooms              dpage/pgadmin4:latest                             "/bin/sh -c ' mkdir …"   pgadmin_rooms              12 days ago    Up 3 days               80/tcp, 443/tcp
postgres_rooms             postgres:latest                                   "docker-entrypoint.s…"   postgres_rooms             12 days ago    Up 3 days (healthy)     5432/tcp
redis_rooms                redis:latest                                      "docker-entrypoint.s…"   redis_rooms                12 days ago    Up 3 days (healthy)     6379/tcp
redisinsight_rooms         redis/redisinsight:latest                         "./docker-entry.sh n…"   redisinsight_rooms         12 days ago    Up 3 days               5540/tcp
traefik_rooms              traefik:v3.6                                      "/entrypoint.sh --ap…"   traefik                    12 days ago    Up 3 days               0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp
wise-2526-rooms-backend    cyberfussel/wise-2526-rooms-backend:latest        "/app/bin/server"        wise-2526-rooms-backend    14 hours ago   Up 14 hours (healthy)   5000/tcp, 8080/tcp
wise-2526-rooms-frontend   floriansymmank1/wise-2526-rooms-frontend:latest   "docker-entrypoint.s…"   wise-2526-rooms-frontend   14 hours ago   Up 14 hours (healthy)   3000/tcp