Docker-compose & volumes mounted are empty

Hi there this my first publication and I’ve spend 2 fully days for understanding what i am doing wrong… after reading thousand of posts i’ll try the docker community which is, in my way the first place for answers my question.

SO let’s start by the beginning. I’m trying to install a docker for running a space engineers deicated server on linux . My os debian bookworm 12 ( for the main) I use for the docker a debian Bullseye with a wine 8

here is the folder placed on my home directory:

/home/steam/Documents/llda/appdata/space-engineers/instances/SE_LLDA
/home/steam/Documents/llda/appdata/space-engineers/plugins
/home/steam/Documents/llda/appdata/space-engineers/SpaceEngineersDedicated
/home/steam/Documents/llda/appdata/space-engineers/ steamcmd

the llda folder contains the docker files:

docker-compose.yml
Dockerfile
Entrypoint.sh
healthcheck.sh
winetricks.sh

The SE_LLDA folder contain the game ( not the server installation but the world including the saves of the world and the parameter for the server)

here is the docker-compose.yml


version: '3.8'

services:
  se-server:
    image: devidian/spaceengineers:latest
    container_name: se-ds-dockerr
    restart: unless-stopped
    volumes:
      # left side: your docker-host machine
      # right side: the paths in the image (!!do not change!!)
      - /appdata/space-engineers/plugins/:/appdata/space-engineers/plugins/:shared
      - /appdata/space-engineers/instances/:/appdata/space-engineers/instances/:shared
      - /appdata/space-engineers/SpaceEngineersDedicated/:/appdata/space-engineers/SpaceEngineersDedicated/:shared
      - ./appdata/space-engineers/steamcmd/:/root/.steam/:shared
    ports:
      - target: 27016
        published: 27016
        protocol: udp
        mode: host
      - target: 8080
        published: 18080
        protocol: tcp
        mode: host
    environment:
      - WINEDEBUG=-all
      - INSTANCE_NAME=SE_LLDA
      - PUBLIC_IP=XXX.YYY.ZZZ.AAA #( configured for my ip )
      # public ip required for healthcheck

My ip are well configured and no trouble when executing

docker-compose up -d

When i run ‘docker-compose up’ ( or ‘docker compose up’) i have the server who tell me that some files are missing
I try to modify the docker-compose by adding a dot before the lines

/appdata/space-engineers/plugins/:/appdata/space-engineers/plugins/:shared

become

./appdata/space-engineers/plugins/:/appdata/space-engineers/plugins/:shared

i also add the shared option because i’ve seen on my configuration that my mount was on rprivate. I was thinking this was a problem of replication

Despite this work and after many tries the dockers folder are still empty but for some reasons docker don’t say to me that they are missing ( except for the plugins folder because it’s an empty one i d’ont use data from this folders)

I d’ont know what to do, what i am missing . I’m a beginner on docker. I’ve read many things but i don’t know how to start

here is the docker image inspect:

{
        "Id": "8335a78713d9e7d1f665e689ed383a19cc83e023e5a78b2fad3048bade868969",
        "Created": "2024-01-14T02:21:07.933759657Z",
        "Path": "/bin/sh",
        "Args": [
            "-c",
            "/root/entrypoint.sh"
        ],
        "State": {
            "Status": "running",
            "Running": true,
            "Paused": false,
            "Restarting": false,
            "OOMKilled": false,
            "Dead": false,
            "Pid": 1030573,
            "ExitCode": 0,
            "Error": "",
            "StartedAt": "2024-01-14T02:22:07.087638107Z",
            "FinishedAt": "2024-01-14T02:22:05.555317801Z",
            "Health": {
                "Status": "starting",
                "FailingStreak": 0,
                "Log": []
            }
        },
        "Image": "sha256:515d669ced333a856769ad08dea6f68147fa27b99f1ac59bbb4b3cdf720b708a",
        "ResolvConfPath": "/var/lib/docker/containers/8335a78713d9e7d1f665e689ed383a19cc83e023e5a78b2fad3048bade868969/resolv.conf",
        "HostnamePath": "/var/lib/docker/containers/8335a78713d9e7d1f665e689ed383a19cc83e023e5a78b2fad3048bade868969/hostname",
        "HostsPath": "/var/lib/docker/containers/8335a78713d9e7d1f665e689ed383a19cc83e023e5a78b2fad3048bade868969/hosts",
        "LogPath": "/var/lib/docker/containers/8335a78713d9e7d1f665e689ed383a19cc83e023e5a78b2fad3048bade868969/8335a78713d9e7d1f665e689ed383a19cc83e023e5a78b2fad3048bade868969-json.log",
        "Name": "/se-ds-dockerr",
        "RestartCount": 4,
        "Driver": "overlay2",
        "Platform": "linux",
        "MountLabel": "",
        "ProcessLabel": "",
        "AppArmorProfile": "docker-default",
        "ExecIDs": null,
        "HostConfig": {
            "Binds": [
                "/home/steam/Documents/llda/appdata/space-engineers/SpaceEngineersDedicated:/appdata/space-engineers/SpaceEngineersDedicated:rw,shared",
                "/home/steam/Documents/llda/appdata/space-engineers/steamcmd:/root/.steam:rw,shared",
                "/home/steam/Documents/llda/appdata/space-engineers/plugins:/appdata/space-engineers/plugins:rw,shared",
                "/home/steam/Documents/llda/appdata/space-engineers/instances:/appdata/space-engineers/instances:rw,shared"
            ],
            "ContainerIDFile": "",
            "LogConfig": {
                "Type": "json-file",
                "Config": {}
            },
            "NetworkMode": "llda_default",
            "PortBindings": {
                "27016/udp": [
                    {
                        "HostIp": "",
                        "HostPort": "27016"
                    }
                ],
                "8080/tcp": [
                    {
                        "HostIp": "",
                        "HostPort": "18080"
                    }
                ]
            },
            "RestartPolicy": {
                "Name": "unless-stopped",
                "MaximumRetryCount": 0
            },
            "AutoRemove": false,
            "VolumeDriver": "",
            "VolumesFrom": null,
            "ConsoleSize": [
                0,
                0
            ],
            "CapAdd": null,
            "CapDrop": null,
            "CgroupnsMode": "private",
            "Dns": null,
            "DnsOptions": null,
            "DnsSearch": null,
            "ExtraHosts": [],
            "GroupAdd": null,
            "IpcMode": "private",
            "Cgroup": "",
            "Links": null,
            "OomScoreAdj": 0,
            "PidMode": "",
            "Privileged": false,
            "PublishAllPorts": false,
            "ReadonlyRootfs": false,
            "SecurityOpt": null,
            "UTSMode": "",
            "UsernsMode": "",
            "ShmSize": 67108864,
            "Runtime": "runc",
            "Isolation": "",
            "CpuShares": 0,
            "Memory": 0,
            "NanoCpus": 0,
            "CgroupParent": "",
            "BlkioWeight": 0,
            "BlkioWeightDevice": null,
            "BlkioDeviceReadBps": null,
            "BlkioDeviceWriteBps": null,
            "BlkioDeviceReadIOps": null,
            "BlkioDeviceWriteIOps": null,
            "CpuPeriod": 0,
            "CpuQuota": 0,
            "CpuRealtimePeriod": 0,
            "CpuRealtimeRuntime": 0,
            "CpusetCpus": "",
            "CpusetMems": "",
            "Devices": null,
            "DeviceCgroupRules": null,
            "DeviceRequests": null,
            "MemoryReservation": 0,
            "MemorySwap": 0,
            "MemorySwappiness": null,
            "OomKillDisable": null,
            "PidsLimit": null,
            "Ulimits": null,
            "CpuCount": 0,
            "CpuPercent": 0,
            "IOMaximumIOps": 0,
            "IOMaximumBandwidth": 0,
            "MaskedPaths": [
                "/proc/asound",
                "/proc/acpi",
                "/proc/kcore",
                "/proc/keys",
                "/proc/latency_stats",
                "/proc/timer_list",
                "/proc/timer_stats",
                "/proc/sched_debug",
                "/proc/scsi",
                "/sys/firmware",
                "/sys/devices/virtual/powercap"
            ],
            "ReadonlyPaths": [
                "/proc/bus",
                "/proc/fs",
                "/proc/irq",
                "/proc/sys",
                "/proc/sysrq-trigger"
            ]
        },
        "GraphDriver": {
            "Data": {
                "LowerDir": "/var/lib/docker/overlay2/5cfdbff3325ac6aa2f9bc5459c0583f672df10ea9a1fcd5cd9800a63a7c0b234-init/diff:/var/lib/docker/overlay2/d0b14062cd7760f57eb46f484f2ba6c150969d6cd6224e212a97aff5d6cdac31/diff:/var/lib/docker/overlay2/0d4900d7ca89b83b74ace64bce245c29b32137b167ab669f51c72ef84c95b4cc/diff:/var/lib/docker/overlay2/997a8abfcac0d27d2edae6a3423eac4b7678f82b0b535108ca4ea07b60de417b/diff:/var/lib/docker/overlay2/33c5ebe3e7f0033ed3f05497f4e3cf01e6cb015c81e8064faecce2559103a422/diff:/var/lib/docker/overlay2/ab95bc5d9dc0943da11c8c3a7f93c08df269ac4c661d828b8f12fce454556d55/diff:/var/lib/docker/overlay2/281e13ed78eef3e00c2c29441762d861d1526cec882ed7c3dc8b0400207816cf/diff:/var/lib/docker/overlay2/6443d23961dc090f5af64391b0f80f055fa6bee095ff6a9defaefe8503b8bfb0/diff:/var/lib/docker/overlay2/871a0f98ca715b93915b8edb4005490356d409e97d016b98d7c514279b93fba9/diff:/var/lib/docker/overlay2/2816be8ab3d812d451d43d2f7c9ece3d4bb9fcbfaec5573fa8497d4b75fc4ad4/diff",
                "MergedDir": "/var/lib/docker/overlay2/5cfdbff3325ac6aa2f9bc5459c0583f672df10ea9a1fcd5cd9800a63a7c0b234/merged",
                "UpperDir": "/var/lib/docker/overlay2/5cfdbff3325ac6aa2f9bc5459c0583f672df10ea9a1fcd5cd9800a63a7c0b234/diff",
                "WorkDir": "/var/lib/docker/overlay2/5cfdbff3325ac6aa2f9bc5459c0583f672df10ea9a1fcd5cd9800a63a7c0b234/work"
            },
            "Name": "overlay2"
        },
        "Mounts": [
            {
                "Type": "bind",
                "Source": "/home/steam/Documents/llda/appdata/space-engineers/SpaceEngineersDedicated",
                "Destination": "/appdata/space-engineers/SpaceEngineersDedicated",
                "Mode": "rw,shared",
                "RW": true,
                "Propagation": "shared"
            },
            {
                "Type": "bind",
                "Source": "/home/steam/Documents/llda/appdata/space-engineers/steamcmd",
                "Destination": "/root/.steam",
                "Mode": "rw,shared",
                "RW": true,
                "Propagation": "shared"
            },
            {
                "Type": "bind",
                "Source": "/home/steam/Documents/llda/appdata/space-engineers/plugins",
                "Destination": "/appdata/space-engineers/plugins",
                "Mode": "rw,shared",
                "RW": true,
                "Propagation": "shared"
            },
            {
                "Type": "bind",
                "Source": "/home/steam/Documents/llda/appdata/space-engineers/instances",
                "Destination": "/appdata/space-engineers/instances",
                "Mode": "rw,shared",
                "RW": true,
                "Propagation": "shared"
            }
        ],
        "Config": {
            "Hostname": "8335a78713d9",
            "Domainname": "",
            "User": "",
            "AttachStdin": false,
            "AttachStdout": true,
            "AttachStderr": true,
            "ExposedPorts": {
                "27016/udp": {},
                "8080/tcp": {}
            },
            "Tty": false,
            "OpenStdin": false,
            "StdinOnce": false,
            "Env": [
                "WINEDEBUG=-all",
                "INSTANCE_NAME=SE_LLDA",
                "PUBLIC_IP=88.99.215.27",
                "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
                "WINEARCH=win64",
                "WINEPREFIX=/root/server",
                "APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1"
            ],
            "Cmd": null,
            "Healthcheck": {
                "Test": [
                    "CMD",
                    "/root/healthcheck.sh"
                ],
                "Interval": 60000000000,
                "Timeout": 60000000000,
                "StartPeriod": 600000000000,
                "Retries": 3
            },
            "Image": "devidian/spaceengineers:latest",
            "Volumes": null,
            "WorkingDir": "/root",
            "Entrypoint": [
                "/bin/sh",
                "-c",
                "/root/entrypoint.sh"
            ],
            "OnBuild": null,
            "Labels": {
                "com.docker.compose.config-hash": "755aa912a4566b656259484776715737115bf8a3a92207f5063dfcbb746ccacd",
                "com.docker.compose.container-number": "1",
                "com.docker.compose.depends_on": "",
                "com.docker.compose.image": "sha256:515d669ced333a856769ad08dea6f68147fa27b99f1ac59bbb4b3cdf720b708a",
                "com.docker.compose.oneoff": "False",
                "com.docker.compose.project": "llda",
                "com.docker.compose.project.config_files": "/home/steam/Documents/llda/docker-compose.yml",
                "com.docker.compose.project.working_dir": "/home/steam/Documents/llda",
                "com.docker.compose.replace": "cf480cd81db3cd4c3af8204431459fb7a698417c401bd5cbe7700dd3f6d56a05",
                "com.docker.compose.service": "se-server",
                "com.docker.compose.version": "2.23.3"
            }
        },
        "NetworkSettings": {
            "Bridge": "",
            "SandboxID": "5c7d498e0c96528b4488e9877461659ae893b14c4a631fe0ce25fb9a87d9d158",
            "HairpinMode": false,
            "LinkLocalIPv6Address": "",
            "LinkLocalIPv6PrefixLen": 0,
            "Ports": {
                "27016/udp": [
                    {
                        "HostIp": "0.0.0.0",
                        "HostPort": "27016"
                    },
                    {
                        "HostIp": "::",
                        "HostPort": "27016"
                    }
                ],
                "8080/tcp": [
                    {
                        "HostIp": "0.0.0.0",
                        "HostPort": "18080"
                    },
                    {
                        "HostIp": "::",
                        "HostPort": "18080"
                    }
                ]
            },
            "SandboxKey": "/var/run/docker/netns/5c7d498e0c96",
            "SecondaryIPAddresses": null,
            "SecondaryIPv6Addresses": null,
            "EndpointID": "",
            "Gateway": "",
            "GlobalIPv6Address": "",
            "GlobalIPv6PrefixLen": 0,
            "IPAddress": "",
            "IPPrefixLen": 0,
            "IPv6Gateway": "",
            "MacAddress": "",
            "Networks": {
                "llda_default": {
                    "IPAMConfig": null,
                    "Links": null,
                    "Aliases": [
                        "se-ds-dockerr",
                        "se-server",
                        "8335a78713d9"
                    ],
                    "NetworkID": "cfb521ed73a7f0cf8ccd621492d6af665557f9478027b014cb96dceec05bee6f",
                    "EndpointID": "d52b6c14788838299867f9b098a99694df60ed1a4a0ac482f3309e7b8a5cfc4f",
                    "Gateway": "172.19.0.1",
                    "IPAddress": "172.19.0.2",
                    "IPPrefixLen": 16,
                    "IPv6Gateway": "",
                    "GlobalIPv6Address": "",
                    "GlobalIPv6PrefixLen": 0,
                    "MacAddress": "02:42:ac:13:00:02",
                    "DriverOpts": null
                }
            }
        }
    }
]

Ty for your help and, btw Happy new year!

This is an absolute path. If your container actually writes data into the container path /appdata/space-engineers/plugins The files should exist on your host in /appdata/space-engineers/plugins and should be listed (on the host) by issuing the command: ls -la /appdata/space-engineers/plugins

This is a relative path. The path is relative to the location of the compose file.

I am not sure what you meant to say, but by default there is no need to tinker with the mount propagation. It is about how submounts in the host folder are handled within the container.

Those binds do not match the first three binds (mount a host folder into a container folder is a bind, even though they are declared underneath volumes) of the shared compose file. Please always share the latest and complete state.

How did you make sure, that your application inside the container actually writes into the container paths you map as binds?

Please share the output of docker diff {container name or id}. It will show us, where files have been written into the container filesystem.

Hi an ty for your kick response. here is the log as asked ( and a new command for me ty ) :slight_smile:

A /appdata/space-engineers
A /appdata/space-engineers/SpaceEngineersDedicated
A /appdata/space-engineers/instances
A /appdata/space-engineers/plugins
C /root
A /root/.steam
A /root/Steam
A /root/Steam/steamapps
A /root/Steam/steamapps/libraryfolders.vdf
A /root/Steam/userdata
A /root/Steam/userdata/anonymous
A /root/Steam/userdata/anonymous/config
A /root/Steam/userdata/anonymous/config/localconfig.vdf
A /root/Steam/appcache
A /root/Steam/appcache/httpcache
A /root/Steam/appcache/httpcache/62
A /root/Steam/appcache/httpcache/81
A /root/Steam/appcache/httpcache/99
A /root/Steam/appcache/httpcache/0f
A /root/Steam/appcache/httpcache/ef
A /root/Steam/appcache/httpcache/94
A /root/Steam/appcache/httpcache/a3
A /root/Steam/appcache/httpcache/29
A /root/Steam/appcache/httpcache/65
A /root/Steam/appcache/httpcache/73
A /root/Steam/appcache/httpcache/8f
A /root/Steam/appcache/httpcache/b1
A /root/Steam/appcache/httpcache/d3
A /root/Steam/appcache/httpcache/e1
A /root/Steam/appcache/httpcache/32
A /root/Steam/appcache/httpcache/72
A /root/Steam/appcache/httpcache/8a
A /root/Steam/appcache/httpcache/c7
A /root/Steam/appcache/httpcache/07
A /root/Steam/appcache/httpcache/92
A /root/Steam/appcache/httpcache/a6
A /root/Steam/appcache/httpcache/15
A /root/Steam/appcache/httpcache/1d
A /root/Steam/appcache/httpcache/50
A /root/Steam/appcache/httpcache/93
A /root/Steam/appcache/httpcache/58
A /root/Steam/appcache/httpcache/7a
A /root/Steam/appcache/httpcache/7c
A /root/Steam/appcache/httpcache/d5
A /root/Steam/appcache/httpcache/cc
A /root/Steam/appcache/httpcache/e2
A /root/Steam/appcache/httpcache/f8
A /root/Steam/appcache/httpcache/0b
A /root/Steam/appcache/httpcache/1f
A /root/Steam/appcache/httpcache/28
A /root/Steam/appcache/httpcache/7e
A /root/Steam/appcache/httpcache/ea
A /root/Steam/appcache/httpcache/24
A /root/Steam/appcache/httpcache/34
A /root/Steam/appcache/httpcache/bc
A /root/Steam/appcache/httpcache/c4
A /root/Steam/appcache/httpcache/19
A /root/Steam/appcache/httpcache/53
A /root/Steam/appcache/httpcache/d0
A /root/Steam/appcache/httpcache/fd
A /root/Steam/appcache/httpcache/1c
A /root/Steam/appcache/httpcache/5a
A /root/Steam/appcache/httpcache/5f
A /root/Steam/appcache/httpcache/c1
A /root/Steam/appcache/httpcache/5e
A /root/Steam/appcache/httpcache/d6
A /root/Steam/appcache/httpcache/00
A /root/Steam/appcache/httpcache/a1
A /root/Steam/appcache/httpcache/ab
A /root/Steam/appcache/httpcache/b2
A /root/Steam/appcache/httpcache/35
A /root/Steam/appcache/httpcache/55
A /root/Steam/appcache/httpcache/6f
A /root/Steam/appcache/httpcache/e9
A /root/Steam/appcache/httpcache/71
A /root/Steam/appcache/httpcache/b7
A /root/Steam/appcache/httpcache/16
A /root/Steam/appcache/httpcache/1a
A /root/Steam/appcache/httpcache/3c
A /root/Steam/appcache/httpcache/4a
A /root/Steam/appcache/httpcache/1e
A /root/Steam/appcache/httpcache/27
A /root/Steam/appcache/httpcache/5d
A /root/Steam/appcache/httpcache/c0
A /root/Steam/appcache/httpcache/f9
A /root/Steam/appcache/httpcache/09
A /root/Steam/appcache/httpcache/2d
A /root/Steam/appcache/httpcache/46
A /root/Steam/appcache/httpcache/48
A /root/Steam/appcache/httpcache/01
A /root/Steam/appcache/httpcache/78
A /root/Steam/appcache/httpcache/ee
A /root/Steam/appcache/httpcache/25
A /root/Steam/appcache/httpcache/3a
A /root/Steam/appcache/httpcache/fc
A /root/Steam/appcache/httpcache/cf
A /root/Steam/appcache/httpcache/12
A /root/Steam/appcache/httpcache/18
A /root/Steam/appcache/httpcache/60
A /root/Steam/appcache/httpcache/80
A /root/Steam/appcache/httpcache/22
A /root/Steam/appcache/httpcache/a8
A /root/Steam/appcache/httpcache/a9
A /root/Steam/appcache/httpcache/cb
A /root/Steam/appcache/httpcache/33
A /root/Steam/appcache/httpcache/9d
A /root/Steam/appcache/httpcache/af
A /root/Steam/appcache/httpcache/fb
A /root/Steam/appcache/httpcache/05
A /root/Steam/appcache/httpcache/f1
A /root/Steam/appcache/httpcache/b0
A /root/Steam/appcache/httpcache/df
A /root/Steam/appcache/httpcache/40
A /root/Steam/appcache/httpcache/83
A /root/Steam/appcache/httpcache/a0
A /root/Steam/appcache/httpcache/aa
A /root/Steam/appcache/httpcache/95
A /root/Steam/appcache/httpcache/0c
A /root/Steam/appcache/httpcache/23
A /root/Steam/appcache/httpcache/74
A /root/Steam/appcache/httpcache/90
A /root/Steam/appcache/httpcache/59
A /root/Steam/appcache/httpcache/7d
A /root/Steam/appcache/httpcache/7f
A /root/Steam/appcache/httpcache/a4
A /root/Steam/appcache/httpcache/b3
A /root/Steam/appcache/httpcache/e5
A /root/Steam/appcache/httpcache/4c
A /root/Steam/appcache/httpcache/69
A /root/Steam/appcache/httpcache/88
A /root/Steam/appcache/httpcache/ac
A /root/Steam/appcache/httpcache/61
A /root/Steam/appcache/httpcache/68
A /root/Steam/appcache/httpcache/87
A /root/Steam/appcache/httpcache/75
A /root/Steam/appcache/httpcache/bb
A /root/Steam/appcache/httpcache/d1
A /root/Steam/appcache/httpcache/f2
A /root/Steam/appcache/httpcache/0d
A /root/Steam/appcache/httpcache/2e
A /root/Steam/appcache/httpcache/44
A /root/Steam/appcache/httpcache/4b
A /root/Steam/appcache/httpcache/38
A /root/Steam/appcache/httpcache/3e
A /root/Steam/appcache/httpcache/e4
A /root/Steam/appcache/httpcache/47
A /root/Steam/appcache/httpcache/b6
A /root/Steam/appcache/httpcache/db
A /root/Steam/appcache/httpcache/85
A /root/Steam/appcache/httpcache/b9
A /root/Steam/appcache/httpcache/f7
A /root/Steam/appcache/httpcache/67
A /root/Steam/appcache/httpcache/d9
A /root/Steam/appcache/httpcache/dc
A /root/Steam/appcache/httpcache/1b
A /root/Steam/appcache/httpcache/30
A /root/Steam/appcache/httpcache/4e
A /root/Steam/appcache/httpcache/54
A /root/Steam/appcache/httpcache/c3
A /root/Steam/appcache/httpcache/ce
A /root/Steam/appcache/httpcache/f4
A /root/Steam/appcache/httpcache/20
A /root/Steam/appcache/httpcache/36
A /root/Steam/appcache/httpcache/56
A /root/Steam/appcache/httpcache/8d
A /root/Steam/appcache/httpcache/b8
A /root/Steam/appcache/httpcache/c2
A /root/Steam/appcache/httpcache/04
A /root/Steam/appcache/httpcache/52
A /root/Steam/appcache/httpcache/5b
A /root/Steam/appcache/httpcache/97
A /root/Steam/appcache/httpcache/e6
A /root/Steam/appcache/httpcache/63
A /root/Steam/appcache/httpcache/ad
A /root/Steam/appcache/httpcache/ba
A /root/Steam/appcache/httpcache/bd
A /root/Steam/appcache/httpcache/c8
A /root/Steam/appcache/httpcache/ca
A /root/Steam/appcache/httpcache/de
A /root/Steam/appcache/httpcache/21
A /root/Steam/appcache/httpcache/2a
A /root/Steam/appcache/httpcache/8e
A /root/Steam/appcache/httpcache/9b
A /root/Steam/appcache/httpcache/84
A /root/Steam/appcache/httpcache/b5
A /root/Steam/appcache/httpcache/0e
A /root/Steam/appcache/httpcache/17
A /root/Steam/appcache/httpcache/26
A /root/Steam/appcache/httpcache/66
A /root/Steam/appcache/httpcache/64
A /root/Steam/appcache/httpcache/6d
A /root/Steam/appcache/httpcache/79
A /root/Steam/appcache/httpcache/dd
A /root/Steam/appcache/httpcache/77
A /root/Steam/appcache/httpcache/e7
A /root/Steam/appcache/httpcache/6c
A /root/Steam/appcache/httpcache/89
A /root/Steam/appcache/httpcache/f6
A /root/Steam/appcache/httpcache/4d
A /root/Steam/appcache/httpcache/c6
A /root/Steam/appcache/httpcache/ed
A /root/Steam/appcache/httpcache/f0
A /root/Steam/appcache/httpcache/9c
A /root/Steam/appcache/httpcache/b4
A /root/Steam/appcache/httpcache/ec
A /root/Steam/appcache/httpcache/ff
A /root/Steam/appcache/httpcache/2b
A /root/Steam/appcache/httpcache/86
A /root/Steam/appcache/httpcache/f5
A /root/Steam/appcache/httpcache/2c
A /root/Steam/appcache/httpcache/cd
A /root/Steam/appcache/httpcache/d2
A /root/Steam/appcache/httpcache/e3
A /root/Steam/appcache/httpcache/43
A /root/Steam/appcache/httpcache/4f
A /root/Steam/appcache/httpcache/31
A /root/Steam/appcache/httpcache/41
A /root/Steam/appcache/httpcache/e0
A /root/Steam/appcache/httpcache/42
A /root/Steam/appcache/httpcache/be
A /root/Steam/appcache/httpcache/da
A /root/Steam/appcache/httpcache/fa
A /root/Steam/appcache/httpcache/10
A /root/Steam/appcache/httpcache/7b
A /root/Steam/appcache/httpcache/d4
A /root/Steam/appcache/httpcache/3b
A /root/Steam/appcache/httpcache/8b
A /root/Steam/appcache/httpcache/bf
A /root/Steam/appcache/httpcache/c5
A /root/Steam/appcache/httpcache/a2
A /root/Steam/appcache/httpcache/2f
A /root/Steam/appcache/httpcache/76
A /root/Steam/appcache/httpcache/96
A /root/Steam/appcache/httpcache/9e
A /root/Steam/appcache/httpcache/e8
A /root/Steam/appcache/httpcache/03
A /root/Steam/appcache/httpcache/0a
A /root/Steam/appcache/httpcache/11
A /root/Steam/appcache/httpcache/9f
A /root/Steam/appcache/httpcache/14
A /root/Steam/appcache/httpcache/51
A /root/Steam/appcache/httpcache/a5
A /root/Steam/appcache/httpcache/eb
A /root/Steam/appcache/httpcache/08
A /root/Steam/appcache/httpcache/6b
A /root/Steam/appcache/httpcache/6e
A /root/Steam/appcache/httpcache/8c
A /root/Steam/appcache/httpcache/d8
A /root/Steam/appcache/httpcache/3f
A /root/Steam/appcache/httpcache/49
A /root/Steam/appcache/httpcache/57
A /root/Steam/appcache/httpcache/ae
A /root/Steam/appcache/httpcache/3d
A /root/Steam/appcache/httpcache/5c
A /root/Steam/appcache/httpcache/82
A /root/Steam/appcache/httpcache/d7
A /root/Steam/appcache/httpcache/06
A /root/Steam/appcache/httpcache/98
A /root/Steam/appcache/httpcache/c9
A /root/Steam/appcache/httpcache/f3
A /root/Steam/appcache/httpcache/37
A /root/Steam/appcache/httpcache/45
A /root/Steam/appcache/httpcache/a7
A /root/Steam/appcache/httpcache/fe
A /root/Steam/appcache/httpcache/02
A /root/Steam/appcache/httpcache/39
A /root/Steam/appcache/httpcache/6a
A /root/Steam/appcache/httpcache/9a
A /root/Steam/appcache/httpcache/13
A /root/Steam/appcache/httpcache/70
A /root/Steam/appcache/httpcache/91
A /root/Steam/appcache/packageinfo.vdf
A /root/Steam/appcache/appinfo.vdf
A /root/Steam/config
A /root/Steam/config/config.vdf
A /root/Steam/config/libraryfolders.vdf
A /root/Steam/logs
A /root/Steam/logs/systemaudiomanager.txt
A /root/Steam/logs/systemdisplaymanager.txt
A /root/Steam/logs/appinfo_log.previous.txt
A /root/Steam/logs/configstore_log.previous.txt
A /root/Steam/logs/configstore_log.txt
A /root/Steam/logs/connection_log.previous.txt
A /root/Steam/logs/connection_log.txt
A /root/Steam/logs/shader_log.txt
A /root/Steam/logs/systemmanager.txt
A /root/Steam/logs/systemperfmanager.txt
A /root/Steam/logs/bootstrap_log.txt
A /root/Steam/logs/compat_log.previous.txt
A /root/Steam/logs/compat_log.txt
A /root/Steam/logs/content_log.txt
A /root/Steam/logs/systemdockmanager.txt
A /root/Steam/logs/appinfo_log.txt
A /root/Steam/logs/stderr.txt
A /root/Steam/logs/workshop_log.txt
C /root/.local
C /root/.local/share
A /root/.local/share/Steam
A /root/.local/share/Steam/steamcmd
A /root/.local/share/Steam/steamcmd/public
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_bulgarian.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_japanese.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_norwegian.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_portuguese.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_french.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_schinese.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_greek.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_russian.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_turkish.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_czech.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_dutch.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_vietnamese.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_danish.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_hungarian.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_indonesian.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_korean.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_koreana.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_tchinese.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_latam.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_romanian.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_english.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_finnish.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_polish.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_thai.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_brazilian.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_german.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_italian.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_spanish.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_swedish.txt
A /root/.local/share/Steam/steamcmd/public/steambootstrapper_ukrainian.txt
A /root/.local/share/Steam/steamcmd/siteserverui
A /root/.local/share/Steam/steamcmd/siteserverui/linux64
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/content_resources_200_percent.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/icudtl.dat
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/LICENSES.chromium.html
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/content_shell.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/libffmpeg.so
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/libnode.so
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/ui_resources_200_percent.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/LICENSE
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/blink_image_resources_200_percent.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/fil.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ja.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ms.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/pt-BR.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/es-419.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/et.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ko.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/sr.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/cs.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/hi.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/sk.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/fi.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/da.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/hr.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/kn.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/lt.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ru.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/sv.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/zh-TW.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/el.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/it.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/lv.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/nb.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/pl.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/bn.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/en-US.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/sl.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/th.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/zh-CN.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/fa.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/fake-bidi.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/te.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/tr.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/en-GB.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/gu.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/sw.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/uk.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ar.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/fr.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/mr.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/nl.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/am.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/he.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/hu.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/pt-PT.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ro.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/de.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/es.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/id.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/vi.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/bg.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ca.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ml.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/locales/ta.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/pdf_viewer_resources.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/views_resources_200_percent.pak
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/natives_blob.bin
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/resources
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/resources/electron.asar
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/resources/app.asar
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/siteserverui
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/snapshot_blob.bin
A /root/.local/share/Steam/steamcmd/siteserverui/linux64/version
A /root/.local/share/Steam/steamcmd/steamcmd.sh
A /root/.local/share/Steam/steamcmd/linux32
A /root/.local/share/Steam/steamcmd/linux32/steamcmd
A /root/.local/share/Steam/steamcmd/linux32/steamconsole.so
A /root/.local/share/Steam/steamcmd/linux32/steamerrorreporter
A /root/.local/share/Steam/steamcmd/linux32/crashhandler.so
A /root/.local/share/Steam/steamcmd/linux32/libstdc++.so.6
A /root/.local/share/Steam/steamcmd/linux32/libtier0_s.so
A /root/.local/share/Steam/steamcmd/linux32/libvstdlib_s.so
A /root/.local/share/Steam/steamcmd/linux32/steamclient.so
A /root/.local/share/Steam/steamcmd/linux64
A /root/.local/share/Steam/steamcmd/linux64/steamclient.so
A /root/.local/share/Steam/steamcmd/package
A /root/.local/share/Steam/steamcmd/package/steam_cmd_linux.installed
A /root/.local/share/Steam/steamcmd/package/steam_cmd_linux.manifest
A /root/.local/share/Steam/steamcmd/package/steamcmd_bins_linux.zip.vz.db766f27e207c71b2a7f366251a069d0206e29e5_19586483
A /root/.local/share/Steam/steamcmd/package/steamcmd_linux.zip.vz.7240b7c972c7b0b1bf317c7b6d6399caea325644_2357065
A /root/.local/share/Steam/steamcmd/package/steamcmd_public_all.zip.e1efdc838a48f0bbbdb18c1a62eb3a4ee112c965
A /root/.local/share/Steam/steamcmd/package/steamcmd_siteserverui_linux.zip.vz.b3f91662dd4fe403988c5df2eeae97ce7c7bc607_39222306
C /tmp
A /tmp/dumps

Are you sure the files in these folders should be written into the container filesystem?

Furthermore, either your files are already written into the correct folders, and therefor should be written into the host folders you bind, or the application does not start properly, and therefor never writes any files into the folder.

Update:
I didn’t realize this is an existing image on Dockerhub. So your compose file is basically a slightly modified version of the default compose file they have in their description.

Btw. this is technically wrong wording: # right side: the paths in the image (!!do not change!!) ← those are container paths.

Please share container logs, so we can get an idea of what’s wrong.

Update2: did you follow the instructions shared in an Issue in the Github project: Any tutorial or anything else to make the container working ? · Issue #50 · Devidian/docker-spaceengineers · GitHub ? haven’t seen you actually left a comment for this issue.

here is the log file for the container:

-------------------------------INSTALL & UPDATE------------------------------
Redirecting stderr to '/root/Steam/logs/stderr.txt'
ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt".
[  0%] Checking for available update...
[----] Downloading update (0 of 59782 KB)...
[  0%] Downloading update (0 of 59782 KB)...
[  0%] Downloading update (0 of 59782 KB)...
[  0%] Downloading update (3100 of 59782 KB)...
[  5%] Downloading update (6790 of 59782 KB)...
[ 11%] Downloading update (9347 of 59782 KB)...
[ 15%] Downloading update (12058 of 59782 KB)...
[ 20%] Downloading update (14766 of 59782 KB)...
[ 24%] Downloading update (17252 of 59782 KB)...
[ 28%] Downloading update (19739 of 59782 KB)...
[ 33%] Downloading update (22215 of 59782 KB)...
[ 37%] Downloading update (24920 of 59782 KB)...
[ 41%] Downloading update (27381 of 59782 KB)...
[ 45%] Downloading update (29853 of 59782 KB)...
[ 49%] Downloading update (32324 of 59782 KB)...
[ 54%] Downloading update (35033 of 59782 KB)...
[ 58%] Downloading update (37497 of 59782 KB)...
[ 62%] Downloading update (39954 of 59782 KB)...
[ 66%] Downloading update (41871 of 59782 KB)...
[ 70%] Downloading update (43098 of 59782 KB)...
[ 72%] Downloading update (44445 of 59782 KB)...
[ 74%] Downloading update (45672 of 59782 KB)...
[ 76%] Downloading update (46909 of 59782 KB)...
[ 78%] Downloading update (48261 of 59782 KB)...
[ 80%] Downloading update (49488 of 59782 KB)...
[ 82%] Downloading update (50715 of 59782 KB)...
[ 84%] Downloading update (52088 of 59782 KB)...
[ 87%] Downloading update (53318 of 59782 KB)...
[ 89%] Downloading update (54542 of 59782 KB)...
[ 91%] Downloading update (55890 of 59782 KB)...
[ 93%] Downloading update (57117 of 59782 KB)...
[ 95%] Downloading update (58351 of 59782 KB)...
[ 97%] Downloading update (59702 of 59782 KB)...
[ 99%] Downloading update (59782 of 59782 KB)...
[100%] Download Complete.
[----] Applying update...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Cleaning up...
[----] Update complete, launching...
tid(30) burning pthread_key_t == 0 so we never use it
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International characters may not work.
Redirecting stderr to '/root/Steam/logs/stderr.txt'
Logging directory: '/root/Steam/logs'
[  0%] Checking for available updates...
[----] Verifying installation...
[  0%] Downloading update...
[  0%] Checking for available updates...
[----] Download complete.
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Cleaning up...
[----] Update complete, launching Steamcmd...
tid(42) burning pthread_key_t == 0 so we never use it
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International characters may not work.
Redirecting stderr to '/root/Steam/logs/stderr.txt'
Logging directory: '/root/Steam/logs'
[  0%] Checking for available updates...
[----] Verifying installation...
Steam Console Client (c) Valve Corporation - version 1705108307
-- type 'quit' to exit --
Loading Steam API...dlmopen steamservice.so failed: steamservice.so: cannot open shared object file: No such file or directory
OK

Connecting anonymously to Steam Public...OK
Waiting for client config...OK
Waiting for user info...OK
"@sSteamCmdForcePlatformType" = "windows"
e[0mSuccess! App '298740' already up to date.
---------------------------------UPDATE CONFIG-------------------------------
---------------------------------UPDATE PLUGINS------------------------------
Found 0 plugins in /appdata/space-engineers/plugins
-----------------------------CURRENT CONFIGURATION---------------------------
GAME_DIR=/appdata/space-engineers/SpaceEngineersDedicated
CONFIG_PATH=/appdata/space-engineers/instances/SE_LLDA/SpaceEngineers-Dedicated.cfg
INSTANCE_IP=172.19.0.2
CURRENT_IP=172.19.0.2
CURRENT_WORLDNAME=Alien Planet
SAVE_PATH=Z:\\appdata\\space-engineers\\instances\\SE_LLDA\\Saves\\Alien Planet
wine-8.0
----------------------------------START GAME---------------------------------
-----------------------------------END GAME----------------------------------
-----------------------------------BYE !!!!----------------------------------
-------------------------------INSTALL & UPDATE------------------------------
tid(15) burning pthread_key_t == 0 so we never use it
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International characters may not work.
Redirecting stderr to '/root/Steam/logs/stderr.txt'
Logging directory: '/root/Steam/logs'
[  0%] Checking for available updates...
[----] Verifying installation...
Steam Console Client (c) Valve Corporation - version 1705108307
-- type 'quit' to exit --
Loading Steam API...dlmopen steamservice.so failed: steamservice.so: cannot open shared object file: No such file or directory
OK

Connecting anonymously to Steam Public...OK
Waiting for client config...OK
Waiting for user info...OK
"@sSteamCmdForcePlatformType" = "windows"
e[0mSuccess! App '298740' already up to date.
---------------------------------UPDATE CONFIG-------------------------------
---------------------------------UPDATE PLUGINS------------------------------
Found 0 plugins in /appdata/space-engineers/plugins
-----------------------------CURRENT CONFIGURATION---------------------------
GAME_DIR=/appdata/space-engineers/SpaceEngineersDedicated
CONFIG_PATH=/appdata/space-engineers/instances/SE_LLDA/SpaceEngineers-Dedicated.cfg
INSTANCE_IP=172.19.0.2
CURRENT_IP=172.19.0.2
CURRENT_WORLDNAME=Alien Planet
SAVE_PATH=Z:\\appdata\\space-engineers\\instances\\SE_LLDA\\Saves\\Alien Planet
wine-8.0
----------------------------------START GAME---------------------------------
-----------------------------------END GAME----------------------------------
-----------------------------------BYE !!!!----------------------------------

for the rest i’m not sure what is normal or not …

the Past day i’ve trying to build a new image but, same problem

this will be my last question for now, sorry for spamming you: but how to do that ? i mean how to synchronise my appdata/space-engineers/instances/[folder-files and subfolders] to my /appdata/space-engineers/instances directory ( docker side ) ?

I d’ont know how to do this and i understand the problem. This is in fact my problem

ty for the time you spend for me :slight_smile:

I assume that i surely not read all the doc and a RTFM is maybe the answer …

This doesn’t look right.

This can’t be right either. Looks like it starts the process, finishes the process without doing anything in between.

I can’t answer anything regarding the application inside the container. I can only answer aspects about the mechanics of docker. Though, it looks like a problem with the application itself.

Your chances to get help with the application itself are magnitudes higher in the Github Issues section of the Github project than here, unless of course, someone happens to use this particular image and already sorted out how to use it.

It is not syncronization. The same files are just visible from the container and from the host too. I just wanted to note this, but I can’t add better answers than you already got.

Ok ty a lot for your pressious help. In fact you help me a lot by asking some questions… and:
I solve the probleme by :

docker system prune

reinstall the docker by modifying the absolut path to relative path
i don’t use the pre build image
i modified the dockerfile ( for some reasons some script was not autorzed to be executed
i’ll explain all the procedure in the github concerned.

Thanks a lot for helping and for your reactivity you really give me a better knowledge of docker!

kind regards ( for now i’ll play se modded with my friends on linux :slight_smile:

1 Like