How do i give full file access to my code server

help i cant access any thing

You would need to mount the directory to the container.

volumes:
  - /:/home/coder/host  # Mounting the entire host filesystem to /home/coder/host within the container
  - /DATA/AppData/$AppID/project:/home/coder/project  # Specific project directory

If this doesn’t answer your question, then I would need more information.

1 Like