Skip to content
Discussion options

You must be logged in to vote

@BootieTrap what you pasted is enough.
Good news — this is fixable! I can see exactly what is wrong from your output.

Problem 1 — DNS: Your host uses 127.0.0.53 (systemd-resolved stub) as DNS. Docker containers cannot reach that loopback address, so SteamCMD cannot resolve any hostnames. Notice that docker run --dns 8.8.8.8 alpine worked fine — it just needs an explicit DNS server.
First let's try quick fix:

sudo systemctl restart systemd-resolved

Problem 2 — wine: socket : Function not implemented: This is an AF_ALG socket blocked by seccomp — likely your CachyOS kernel update tightened Docker's seccomp profile. Add this to the same service block in docker-compose.yml

    security_opt:
 …

Replies: 1 comment 8 replies

Comment options

You must be logged in to vote
8 replies
@UberDudePL
Comment options

@BootieTrap
Comment options

@BootieTrap
Comment options

@UberDudePL
Comment options

Answer selected by BootieTrap
@BootieTrap
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants