-
System InformationOperating System: madhouse@madhouse:~ $ hostnamectl Docker Version: 20.10.24 build 297E128 Issue Descriptionversion: "3" I am not able to launch the server I get the error in the screenshot, perhaps you can mention where I need to change file paths or the compose file? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Perhaps you could assist |
Beta Was this translation helpful? Give feedback.
-
Oh.. my.. wordThank youThank you for your time.SincerelyByronSent from my Galaxy
-------- Original message --------From: Michael ***@***.***> Date: 7/11/24 7:23 PM (GMT+02:00) To: mbround18/valheim-docker ***@***.***> Cc: ByronZA94 ***@***.***>, Author ***@***.***> Subject: Re: [mbround18/valheim-docker] Valheim Server Rasberry Pi 4 B (Discussion #891)
Change the service names to be unique
Docker doesnt allow two services to have the same name.
Invalid:
services:
valheim:
valheim:
Valid:
services:
valheim-0:
valheim-1:
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Good day,
Thank you for your reply.
Please see attached as needed, sorry man I know its fairly difficult to
troubleshoot with partial content.
I can also setup a screen share one day/night when your free if you wanted.
Very keen on getting this sorted for me and my partner to play on our own
server.
…On Fri, Jul 12, 2024 at 5:52 PM Michael ***@***.***> wrote:
For me, please paste ur compose file here lol, its hard to read and parse
from an image.
Next to the compose file you need a folder called valheim, it looks like
you have nested servers. try something like this
.
├── docker-compose.yaml
├── server
│ ├── config
│ └── data
└── server-1
├── data
└── saves
6 directories, 1 file
version: "3"services:
valheim-1:
image: mbround18/valheim:latest
ports:
- "2456:2456/udp"
- "2457:2457/udp"
- "2458:2458/udp"
environment:
- PORT=2456
- NAME="Valheim Server on Docker"
- WORLD="Dedicated"
- PASSWORD="SecurePassWord"
- TZ=Africa/Johannesburg
- PUBLIC=0
- AUTO_UPDATE=0
volumes:
- ./server-1/saves:/home/steam/.config/unity3d/IronGate/Valheim
- ./server-1/data:/home/steam/valheim
valheim:
image: ghcr.io/lloesche/valheim-server
cap_add:
- SYS_NICE
volumes:
- ./server/config:/config
- ./server/data:/opt/valheim
ports:
- "2456-2458:2456-2458/udp"
- "9001:9001/tcp"
env_file:
- ./server/valheim.env
restart: always
stop_grace_period: 2m
—
Reply to this email directly, view it on GitHub
<#891 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A5I76MBP2RVNXWFOEY6HDL3ZL73VRAVCNFSM6AAAAABKWYGV62VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTAMBTGM2DAMY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
--
Looking forward to your response.
Sincerely,
Byron
|
Beta Was this translation helpful? Give feedback.
Change the service names to be unique
Docker doesnt allow two services to have the same name.
Invalid:
Valid: