[GH-ISSUE #695] Unable To Start Docker Container Process Label #3518

Closed
opened 2026-04-13 15:03:03 -05:00 by GiteaMirror · 0 comments
Owner

Originally created by @xalxnder on GitHub (Jul 30, 2025).
Original GitHub issue: https://github.com/moghtech/komodo/issues/695

I'm currently using docker compose to deploy the periphery agent. On one host running Rocky 8, I'm able to deploy the periphery container. But on another VM running Centos 7, I'm getting this error when running docker compose up -d

⠴ Container periphery  Starting                                                                                                                      0.5s 
Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: can't set process label: open /proc/self/task/1/attr/exec: no such file or directory: unknown

Here's my periphery service in my compose file:

periphery:
    container_name: periphery
    image: [REDACTED]/moghtech/komodo-periphery:1.18.4 
    restart: unless-stopped
    deploy:
      resources:
        limits:
          cpus: '2'
          memory: 250M
        reservations:
          cpus: '1'
          memory: 100M
    labels:
      - "komodo.skip"
      - "traefik.enable=true"
      - "traefik.http.routers.periphery.rule=Host(` [REDACTED]`)"
      - "traefik.http.routers.periphery.entrypoints=web"
      - "traefik.http.routers.periphery.service=periphery"
      - "traefik.http.services.periphery.loadbalancer.server.port=8120"
    env_file: .komodo-env
    environment:
      PERIPHERY_ROOT_DIRECTORY: ${PERIPHERY_ROOT_DIRECTORY:-/etc/komodo}
      PERIPHERY_SSL_ENABLED: false
      PERIPHERY_DISABLE_TERMINALS: false
      PERIPHERY_INCLUDE_DISK_MOUNTS: /etc/hostname
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - /proc:/proc
      - ${PERIPHERY_ROOT_DIRECTORY:-/etc/komodo}:${PERIPHERY_ROOT_DIRECTORY:-/etc/komodo}
Originally created by @xalxnder on GitHub (Jul 30, 2025). Original GitHub issue: https://github.com/moghtech/komodo/issues/695 I'm currently using docker compose to deploy the periphery agent. On one host running Rocky 8, I'm able to deploy the periphery container. But on another VM running Centos 7, I'm getting this error when running `docker compose up -d` ``` ⠴ Container periphery Starting 0.5s Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: can't set process label: open /proc/self/task/1/attr/exec: no such file or directory: unknown ``` Here's my periphery service in my compose file: ```yaml periphery: container_name: periphery image: [REDACTED]/moghtech/komodo-periphery:1.18.4 restart: unless-stopped deploy: resources: limits: cpus: '2' memory: 250M reservations: cpus: '1' memory: 100M labels: - "komodo.skip" - "traefik.enable=true" - "traefik.http.routers.periphery.rule=Host(` [REDACTED]`)" - "traefik.http.routers.periphery.entrypoints=web" - "traefik.http.routers.periphery.service=periphery" - "traefik.http.services.periphery.loadbalancer.server.port=8120" env_file: .komodo-env environment: PERIPHERY_ROOT_DIRECTORY: ${PERIPHERY_ROOT_DIRECTORY:-/etc/komodo} PERIPHERY_SSL_ENABLED: false PERIPHERY_DISABLE_TERMINALS: false PERIPHERY_INCLUDE_DISK_MOUNTS: /etc/hostname volumes: - /var/run/docker.sock:/var/run/docker.sock - /proc:/proc - ${PERIPHERY_ROOT_DIRECTORY:-/etc/komodo}:${PERIPHERY_ROOT_DIRECTORY:-/etc/komodo} ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#3518