Thoughtscape

Docker-compose YAML file

Jun 24th, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. version: "3.5"
  2.  
  3. services:
  4. ce0:
  5. build: src/
  6. image: alinmear/docker-conanexiles:latest
  7. depends_on:
  8. - redis
  9. restart: unless-stopped
  10. environment:
  11. - "CONANEXILES_ServerSettings_ServerSettings_AdminPassword=boobies"
  12. - "CONANEXILES_Engine_OnlineSubSystemSteam_ServerName=Boobies Cool TEST Server 1"
  13. - "CONANEXILES_Engine_OnlineSubSystemSteam_ServerPassword=momo"
  14. - "CONANEXILES_INSTANCENAME=exiles0"
  15. - "CONANEXILES_Game_RconPlugin_RconEnabled=1"
  16. - "CONANEXILES_Game_RconPlugin_RconPassword=rconshit"
  17. - "CONANEXILES_Game_RconPlugin_RconPort=29595"
  18. - "CONANEXILES_Game_RconPlugin_RconMaxKarma=60"
  19. - "CONANEXILES_Game_DiscordPlugin_Broadcast_Enabled=1"
  20. - "CONANEXILES_Game_DiscordPlugin_Chat_Enabled=1"
  21. - "CONANEXILES_Game_DiscordPlugin_Token=<discord token redacted>"
  22. - "CONANEXILES_Game_DiscordPlugin_Channel=<discord channel redacted>"
  23. - "CONANEXILES_SERVER_TYPE=pvp"
  24. - "CONANEXILES_UPDATE_SHUTDOWN_TIMER=15"
  25. ports:
  26. - 9999:9999/udp
  27. - 10000:10000/udp
  28. - 29015:29015/udp
  29. volumes:
  30. - data:/conanexiles
  31.  
  32.  
  33. redis:
  34. image: redis:5-alpine
  35. restart: unless-stopped
  36. environment:
  37. - "TZ=Australia/Brisbane"
  38. volumes:
  39. - redis:/data/
  40.  
  41. volumes:
  42. data:
  43. redis:
Add Comment
Please, Sign In to add comment