Skip to content

Commit

Permalink
use string instead of bool value in docker-copose environment
Browse files Browse the repository at this point in the history
services.satisfactory-server.environment.ROOTLESS contains false, which is an invalid type, it should be a string, number, or a null
  • Loading branch information
superbjorn09 committed Sep 10, 2024
1 parent f8189b3 commit 0e43933
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ services:
- MAXPLAYERS=4
- PGID=1000
- PUID=1000
- ROOTLESS=false
- STEAMBETA=false
- ROOTLESS='false'
- STEAMBETA='false'
restart: unless-stopped
deploy:
resources:
Expand Down

0 comments on commit 0e43933

Please sign in to comment.