-
Notifications
You must be signed in to change notification settings - Fork 21
Description
Hello everybody,
I have a problem when I try to launch the server, I have this error message that appears:
Status: Image is up to date for ghcr.io/pg9182/northstar-dedicated:1-tf2.0.11.0
docker: Error response from daemon: using mount program fuse-overlayfs: fuse: device not found, try 'modprobe fuse' first
fuse-overlayfs: cannot mount: No such file or directory
Have you ever had this problem ? Searching the web, I can't really find any solutions, from what I understand, the command doesn't find my file path, even though it does exist.
Here is a example of file yml:
version: "3.9"
services:
northstar1:
image: ghcr.io/pg9182/northstar-dedicated:1-tf2.0.11.0
pull_policy: always
environment:
- NS_PORT=37015
- NS_PORT_AUTH=8081
- 'NS_SERVER_NAME=[TESTFRBX] TEST FR TEAM BX'
- 'NS_SERVER_DESC=TEAM BX'
- |
NS_EXTRA_ARGUMENTS=
+setplaylist private_match
+net_compresspackets_minsize 64
+net_compresspackets 1
+spewlog_enable 0
+sv_maxrate 127000
volumes:
- /home/root/Titanfall2:/mnt/titanfall:ro
ports:
- '37015:37015/udp'
- '8081:8081/tcp'
restart: always
I also tried to launch with the command "docker run" without success, same error.
I am on the latest Debian distribution (11.6), Docker and docker compose are well installed and up to date, I followed the instructions from the official site for their installation
Thank you all.