Docker image without Prometheus/Grafama

Hi all, is it possible to set up GitLab using a Docker container, but without Grafana and Prometheus? I just need a self-hosted instance to learn CI/CD. For now, I use the following commands:

export GITLAB_HOME=/srv/gitlab

docker run --detach \
  --hostname mydomain.com \
  --publish 80:80 --publish 22:22 \
  --name gitlab \
  --restart always \
  --volume $GITLAB_HOME/config:/etc/gitlab \
  --volume $GITLAB_HOME/logs:/var/log/gitlab \
  --volume $GITLAB_HOME/data:/var/opt/gitlab \
  gitlab/gitlab-ce:latest

Regards