Can't Sync all GitLab repositories

Hi there! I’m noob on Drone CI yet, but I follow all steps to deploy a new Drone in my VPS.

There is my docker-compose.yml:

version: "3.7"
services:
  drone:
    image: drone/drone:latest
    container_name: drone-cw
    environment:
      DRONE_GITLAB_SERVER: $DRONE_GITLAB_SERVER
      DRONE_GITLAB_CLIENT_ID: $DRONE_GITLAB_CLIENT_ID
      DRONE_GITLAB_CLIENT_SECRET: $DRONE_GITLAB_CLIENT_SECRET
      DRONE_RPC_SECRET: $DRONE_RPC_SECRET
      DRONE_SERVER_HOST: $DRONE_SERVER_HOST
      DRONE_SERVER_PROTO: $DRONE_SERVER_PROTO
      DRONE_USER_CREATE: $DRONE_USER_CREATE
      DRONE_USER_FILTER: $DRONE_USER_FILTER
    ports:
    - 80:80
    - 443:443
    restart: always
    volumes:
    - drone-data:/data
volumes:
  drone-data:

When i run docker-compose up -d the server starts correctly, but when I’m log in, only some repositories are synchronized :confused:

The GitLab server is http://gitlab.com and I am part of a private group, that I’m an admin user.
But only new Repositories of this group are synced with Drone. The oldest are not synced. WHY?! hahahaha

Please can you help-me ?!

EDIT

I enable Log Trace, and i saw that message on all my repos (all unlisted)

TRAC[0085] syncer: skipping subrepositories login=suportecelula name=ssh_do.sh namespace=cw-team1/scripts uid=20400173

Is skipping subrepositories :astonished:

sub-repositories are not supported for reasons described in this comment:

http://discuss.harness.io/t/gitlab-drone-confused-by-subgroups/458/6?u=bradrydzewski

1 Like

Ohh, it’s explained!!
Thank you so much for the explanation :smiley: