Devidian / docker-spaceengineers

A Docker for Space Engineers Dedicated Server
87 stars 21 forks source link

unable to evaluate symlinks #34

Closed Eskian closed 3 months ago

Eskian commented 1 year ago
Building se-server
unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /home/bshaw/Dockerfile: no such file or directory
ERROR: Service 'se-server' failed to build : Build failed

Good evening, and apologies for the newbie question but I keep on getting the above when attempt to run the following .yml code

version: "3.8"

services:
  se-server:
    build: .
    image: spaceengineers:latest
    container_name: se-ds-docker
    restart: unless-stopped
    volumes:
      - /space_engineers/instances:/appdata/space-engineers/instances
      - /space_engineers/SpaceEngineersDedicated:/appdata/space-engineers/SpaceEngineersDedicated
      - /space_engineers/steamcmd:/root/.steam
    ports:
      - target: 27016
        published: 27016
        protocol: udp
        mode: host
    environment:
      - WINEDEBUG=-all
      - INSTANCE_NAME=Amnesia_se
      - PUBLIC_IP=86.10.191.48
Devidian commented 1 year ago

Hi, well i think he tries to build the image and of course if you only have the yml but not the Dockerfile, he cant find it! If you want to build it, you must checkout the repository. Or use image: devidian/spaceengineers:latest. I will update the README again to point that out, it has been removed during the last merge.