'Volumes in docker are not longer created

I working with a simple docker-compose file (node alpine), i got three anon volumens, this already work in the pass but now, not longer created.

I delete the folder from the host side (Windows), to try if docker creates against the folders and put inside the files, but nothing is happend.

version: "3.3"

services:

  api:
    #restart: always
    build:
      context: .
    image: foo-foo-platform:1.1.0.0
    #container_name: foo-foo-platform
    env_file: docker-compose-debug.env
    labels:
      - "traefik.enable=false"
      - "traefik.http.routers.api-gw.rule=PathPrefix(`/`)"
      - "traefik.http.services.api-gw.loadbalancer.server.port=8090"
    networks:
      - internal
    volumes:    
      - /mnt/logs:/mnt/logs
      - /mnt/cc:/mnt/cc      
    ports:
      - "8084:8084"    

networks:
  internal:

I have tried to prune volumes with docker volume prune, anyway noone of volumes listed is from this docker.

Al tried "docker-compose -f docker-compose-debug.yml up --build --force-recreate --renew-anon-volumes"

Note: "/mnt/logs:/mnt/logs" this notation works in windows.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source