Advertisement
Guest User

Untitled

a guest
Jul 11th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.13 KB | None | 0 0
  1. ## This is the main configuration file for the Multicraft daemon. Any change to
  2. ## this file requires a restart of the daemon or a reload through the panel
  3. ## under Settings->Operations. Not all settings can be reloaded while the
  4. ## daemon is running.
  5. ## Lines with a '#' in front of them are disabled and will not have any effect.
  6. ## Remove the '#' to enable the setting.
  7. [multicraft]
  8. ## The daemon will run under this user (not used for Windows)
  9. user = minecraft
  10. ## Directories created by Multicraft will have the owner set to
  11. ## the user and the group set to the webUser (not used for Windows)
  12. ## default: same as "user"
  13. webUser =
  14.  
  15. ## The daemon will listen on the following IP/port.
  16. ## 0.0.0.0 to listen on all available interfaces (all IPs). Note that
  17. ## you will have to use the "externalIp" setting below if you set this
  18. ## to 0.0.0.0 as the control panel needs to know where to connect.
  19. ip = 145.239.81.88
  20. port = 25466
  21.  
  22. ## If the external address is different from the listen address
  23. ## you can set the external address here. This setting will be saved
  24. ## to the DB and used by the control panel to connect to the daemon.
  25. ## default: same as "ip"
  26. #externalIp =
  27.  
  28. ## The connection password for daemon communication
  29. ## !! Change this when you set Multicraft to listen on a public IP !!
  30. ## The same password will have to be used on the panel side in the file:
  31. ## protected/config/config.php
  32. password = w87fucpxg
  33.  
  34. ## Remote IP restrictions for daemon connections. This is a comma separated
  35. ## list of IPs that are allowed to connect to this daemon. Empty for all
  36. ## remote IPs allowed.
  37. ## default: empty
  38. #allowedIps = 145.239.81.88
  39.  
  40. ## The maximum number of daemon connections to allow to this daemon.
  41. ## default: 500
  42. #maxConnections = 500
  43.  
  44. ## The maximum number of daemon connections a single client can open.
  45. ## default: 50
  46. #maxClientConnections = 50
  47.  
  48.  
  49. ## The daemon ID, only the Dynamic license supports this setting.
  50. ## Running multiple servers with the same IDs can cause unpredictable behavior
  51. ## Valid values: 1, 2, ..., 65535
  52. id = 100
  53.  
  54. ## The database containing daemon
  55. ## default: sqlite:data.db (-> "baseDir"/"dataDir"/data.db)
  56. database = mysql:host=127.0.0.1;dbname=admin_multicraft_daemon
  57. ## Example for MySQL connections:
  58. database = mysql:host=145.239.81.88;dbname=admin_multicraft_daemon
  59. dbUser = admin_admin
  60. dbPassword = w87fucpxg
  61. #dbCharset = utf8
  62.  
  63. ## A name for this daemon, this is optional
  64. ## default: Multicraft Daemon
  65. #name =
  66.  
  67. ## The amount of memory available to this daemon in MB. This setting mainly
  68. ## serves informational purpose for display in the control panel and
  69. ## for the API to decide if this daemon can still run more servers.
  70. ## 0 means undefined
  71. ## default: 0
  72. #totalMemory =
  73.  
  74. ## The base directory of the multicraft install. Relative to the users
  75. ## home directory or absolute. Must exist.
  76. ## default: multicraft (-> /home/"user"/multicraft)
  77. baseDir = /home/zeaver/multicraft
  78. ## The directory the daemon binaries reside in
  79. ## default: bin (-> "baseDir"/bin)
  80. daemonDir = bin
  81. ## The data directory. Contains the database, socket, log and
  82. ## must be accessible by the control panel user if using a SQLite DB
  83. ## default: data (-> "baseDir"/data)
  84. dataDir = data
  85. ## The directory jar files can be placed in
  86. ## default: jar (-> "baseDir"/jar)
  87. jarDir = jar
  88. ## The directory containing all the servers. Users can be given access
  89. ## to specific subdirectories containing their server data
  90. ## default: servers (-> "baseDir"/servers)
  91. serversDir = servers
  92. ## The directory containing server templates
  93. ## default: templates (-> "baseDir"/templates)
  94. templatesDir = templates
  95. ## The following files contain daemon specific data.
  96. ## The paths specified are relative to "baseDir"
  97. pidFile = multicraft.pid
  98. logFile = multicraft.log
  99. licenseFile = multicraft.key
  100. scriptsFile = scripts.conf
  101. ## This file defines the config file to use depending on the executable name
  102. configsFile = server_configs.conf
  103. ## This config file contains the default server configuration. It is not
  104. ## in the "jar" directory so it does not get listed as a selection in the
  105. ## JAR File dropdown.
  106. defaultConfigFile = default_server.conf
  107.  
  108. ## Note that for all of the above settings where a file or directory is
  109. ## indicated you can also use absolute paths (/dir), home-relative
  110. ## paths (~/dir) or relative paths (./dir or ../dir). "dir" stands for
  111. ## the setting you're editing.
  112. ## When not using absolute/relative paths the setting is taken to be
  113. ## relative to the home directory of the user configured by the "user"
  114. ## setting.
  115. ## Examples:
  116. ## - Changing "baseDir" to ./multicraft will cause multicraft to search
  117. ## all the files in a subdirectory "multicraft" of the directory it's
  118. ## called from
  119. ## - Changing "logFile" to ~/multicraft.log will cause Multicraft to log
  120. ## everything to the file multicraft.log in the home directory of the
  121. ## user configured by the "user" setting
  122.  
  123. ## The maximum size of one logfile after which the log will be rotated
  124. ## default: 20971520 (20 MB)
  125. logSize = 20971520
  126.  
  127. ## The number of log files to keep (multicraft.log.1 ... multicraft.log.X)
  128. ## default: 9
  129. logCount = 9
  130.  
  131. ## Synchronize log writes. Disabling this will improve performance at the
  132. ## risk of having some log entries overlap.
  133. ## default: true
  134. #logSync = false
  135.  
  136. ## Use thesyslog facility instead of logging to a file.
  137. ## default: false
  138. #logSyslog = true
  139.  
  140. ## The syslog facility to log to. Possible values: auth, cron, daemon,
  141. ## kern, lpr, mail, news, security, syslog, user, uucp, local10-17
  142. ## default: daemon
  143. #logFacility = daemon
  144.  
  145. ## Log all commands the daemon receives from the panel
  146. ## default: false
  147. #logCommands = false
  148.  
  149. ## Log server console output to the log file under these conditions:
  150. ## always - Always log server console output
  151. ## startup - Only log server console output during server startup
  152. ## running - Only log server console output after server startup
  153. ## never - Never log server console output
  154. ## default: startup
  155. #logServerConsole = startup
  156.  
  157. ## Delay between server auto-starts in milliseconds.
  158. ## default: 750
  159. autostartDelay = 750
  160.  
  161. ## A list of section names in .conf files that can safely be defined
  162. ## or overridden by users. Note that this is just a default value that
  163. ## can itself be overridden in the .conf files in the daemon directory.
  164. ## Use * to allow all sections or a regular expression matching allowed
  165. ## sections only.
  166. ## default: ^(encoding|commands|parse_.+)$
  167. #safeConfSections = ^(encoding|commands|parse_.+)$
  168.  
  169. ## Allow symlinks where directories are expected. This check is done for
  170. ## security.
  171. ## default: false
  172. #allowSymlinks = false
  173.  
  174. ## Skip the integrity check for directories. This check is done for
  175. ## security, it verifies that a directory entry is consistent with its
  176. ## filesystem entry. You can disable this if this check causes issues
  177. ## on your particular filesystem.
  178. ## default: false
  179. #skipIntegrityCheck = false
  180.  
  181. ## The timeout for template setup operations in seconds
  182. ## default: 600
  183. #templateSetupTimeout = 600
  184.  
  185. ## Disables the template functionality. Please use the setting in the panel to
  186. ## disable it there.
  187. ## default: false
  188. #templatesDisabled = false
  189.  
  190. ## Advanced: Use TCP keepalive for daemon connections
  191. ## default: true
  192. #tcpKeepAlive = true
  193. ## Advanced: Use TCP keepalive for FTP connections
  194. ## default: true
  195. #ftpTcpKeepAlive = true
  196. ## TCP keepalive parameters, use 0 for system default
  197. ## default: 0
  198. tcpKeepAliveIdle = 60
  199. tcpKeepAliveInterval = 5
  200. tcpKeepAliveCount = 6
  201. ## Advanced: Set global timeout for TCP connections in seconds, 0 for no
  202. ## timeout
  203. ## default: 120
  204. tcpTimeout = 120
  205.  
  206. ## Advanced: Prefer IPv4 for version check requests.
  207. ## Can speed up hostname lookup.
  208. ## default: true
  209. #preferIPv4 = true
  210.  
  211. ## Whether to delete the server directory on the old daemon after a server
  212. ## move. This is disabled by default for safety.
  213. ## default: false
  214. #deleteAfterMove = false
  215.  
  216. ## Only allow a single script to be run at a time for each server. If disabled
  217. ## there is no limit on the number of scripts that can be running at the same
  218. ## time.
  219. ## default: false
  220. singleScriptPerServer = true
  221.  
  222. ## The timeout for server executable and config file downloads in seconds.
  223. ## default: 15
  224. #downloadTimeout = 15
  225. ## The User-Agent string to use for server executable and config file downloads
  226. #downloadUserAgent = Your Custom User-Agent
  227. ## The User-Agent string to use for plugin downloads
  228. #downloadUserAgentPlugins = Your Custom User-Agent
  229. ## Whether or not to add version/architecture/OS parameters when downloading
  230. ## config files
  231. ## default: true
  232. #downloadAddVersionInfo = true
  233.  
  234. ## When enabled the remote host will be verified when using HTTPS, otherwise
  235. ## the host and certificate checks are skipped.
  236. ## default: false
  237. #secureDownloads = false
  238.  
  239. ## The CA certificate bundle to use for verifying secure downloads. If set to
  240. ## "auto" the daemon will try a set of default paths.
  241. ## default: auto
  242. #caBundle = /etc/ssl/certs/ca-certificates.crt
  243.  
  244. [useragent]
  245. ## The path to the Multicraft useragent. This program is used in
  246. ## multiuser mode to access user files.
  247. ## default: bin (-> "baseDir"/bin, same as daemonDir)
  248. #userAgentDir = bin
  249. ## The executable of the Multicraft useragent. Note that a config
  250. ## file with the same name as this setting (plus .conf) will be
  251. ## generated next to this file.
  252. ## default: launcher (-> "baseDir"/"userAgentDir"/useragent)
  253. #userAgentFile = useragent
  254. ## The minimum allowed user and group IDs for server users
  255. ## default: 100
  256. #userAgentMinUid = 100
  257. #userAgentMinGid = 100
  258. ## The script to run when a server is being prepared. The path is
  259. ## relative to the userAgentDir.
  260. ## NOTE: This script will be run as the superuser.
  261. ## default: empty
  262. #userAgentSuperuserPrepare =
  263. ## The script to run when a server is being prepared. The path is
  264. ## relative to the baseDir.
  265. ## default: empty
  266. #userAgentPrepare =
  267. ## Various useragent configuration options
  268. #userAgentCp = /bin/cp
  269. #userAgentCpOpts = --preserve=mode,timestamps --
  270. #userAgentDirCpOpts = -r --preserve=mode,timestamps --
  271. #userAgentUnzip = /usr/bin/unzip
  272. #userAgentUnzipOpts = -qql
  273. #userAgentUnzipRe = ^(?:\s+[^\s]+){3}\s+(.*)$
  274.  
  275.  
  276. [launcher]
  277. ## The path to the Multicraft launcher. This launcher program enables
  278. ## Multicraft to run servers that need a console to run correctly.
  279. ## default: launcher (-> "baseDir"/launcher)
  280. #launcherDir = launcher
  281. ## The executable of the Multicraft launcher
  282. ## default: launcher (-> "baseDir"/"launcherDir"/launcher)
  283. #launcherFile = launcher
  284.  
  285. ## Integrated FTP server settings
  286. [ftp]
  287. ## Wheter or not to enable the integrated FTP server, true/false
  288. ## default: true
  289. enabled = true
  290. ## IP to listen on for FTP connections, uncomment to use the same as
  291. ## for the daemon.
  292. ## 0.0.0.0 means listening on all available interfaces (all IPs)
  293. ## default: same as the "ip" setting for the daemon, see above
  294. ftpIp = 145.239.81.88
  295. ## See the descriptions of "externalIp" and "ip" for the daemon above
  296. ## default: same as "externalIp" if "ftpIp" is "0.0.0.0" otherwise "ftpIp"
  297. #ftpExternalIp =
  298. ## Masquerade IP address to use for passive FTP connections when
  299. ## Multicraft is running behind a router.
  300. ## default: empty
  301. #ftpNatIp =
  302. ## A port range to use for passive data transfers. If this is not
  303. ## specified the FTP server will use random ports.
  304. ## Format: 4000-8000
  305. ## default: empty
  306. #ftpPasvPorts =
  307. ## Port to listen on for incoming FTP connections. Change this to
  308. ## something else if you are already running an FTP server on this
  309. ## system.
  310. ## default: 21
  311. ftpPort = 121
  312. ## Regular expression matching files that can't be manipulated by
  313. ## users in any way. If you want users to be able to upload their own
  314. ## plugins instead of using the ones you provide for them you can
  315. ## just comment this option out.
  316. ## default: empty
  317. forbiddenFiles = \.(jar|exe|bat|pif|sh)$
  318. ## Set the level of detail for FTP server log messages in the multicraft.log.
  319. ## Errors will always be logged regardless of this setting.
  320. ## Available levels:
  321. ## full - Log all messages
  322. ## basic - Don't log client/server communication
  323. ## none - No FTP logging
  324. ## default: full
  325. ftpLogLevel = full
  326. ## If this setting is enabled the FTP server will not be started when the main
  327. ## daemon process is started. You can start the FTP server separately by using
  328. ## "start_ftp" instead of "start" as the parameter to the daemon command.
  329. ## default: false
  330. ftpSeparate = false
  331. ## The PID file for the FTP only process. The path is relative to "baseDir"
  332. ## default: multicraft_ftp.pid
  333. ftpPidFile = multicraft_ftp.pid
  334. ## The log file to use for the FTP only process. This setting has no effect if
  335. ## the FTP server is started as part of the main daemon process (i.e. if
  336. ## "ftpSeparate" is false.
  337. ## default: multicraft.log (same as the daemon)
  338. ftpLogFile = multicraft.log
  339. ## Throttle the FTP bandwidth (experimental)
  340. ## Incoming data throttle (Kb/s)
  341. ## default: 0 (unlimited)
  342. #ftpThrottleIn = 0
  343. ## Outgoing data throttle (Kb/s)
  344. ## default: 0 (unlimited)
  345. #ftpThrottleOut = 0
  346.  
  347. ## Minecraft default settings
  348. [minecraft]
  349. ## The default amount of reserved memory
  350. ## default: 1024
  351. memory = 1024
  352. ## The name of the java executable
  353. ## default: /usr/bin/java
  354. java = /usr/bin/java
  355. ## The jar file to use. This file will be looked for in the "base"
  356. ## directory as configured above
  357. ## default: minecraft_server.jar
  358. jar = minecraft_server.jar
  359.  
  360. ## Backup settings
  361. [backup]
  362. ## The command to run a backup. The following variables can be used:
  363. ## - {WORLD} The name of the world being backed up
  364. ## - {SERVER_DIR} The directory of the server (working directory)
  365. ## - {MULTICRAFT_DIR} The Multicraft base directory ("baseDir" above)
  366. ## - {BASE_DIR} The directory containing all the servers ("serversDir above")
  367. ## Note that the resulting files is expected to be named "{WORLD}-tmp.zip"
  368. command = /usr/bin/zip -qr "{WORLD}-tmp.zip" . -i "{WORLD}"*/*
  369. ## The same setting for Windows systems
  370. commandWin = "{MULTICRAFT_DIR}\bin\zip.exe" -qr "{WORLD}-tmp.zip" "{WORLD}"*/
  371. ## Uncomment the following commands to backup the entire server directory
  372. ## instead of just the current world
  373. ## command = /usr/bin/zip -qr "{WORLD}-tmp.zip" .
  374. ## commandWin = "{MULTICRAFT_DIR}\bin\zip.exe" -qr "{WORLD}-tmp.zip" .
  375.  
  376. ## System settings
  377. [system]
  378. ## Most of the settings below are for Linux only
  379.  
  380. ## Whether or not to use one system user per Minecraft server.
  381. ## This is recommended if you let your users upload untrusted executables.
  382. ## Note that for every server a new system user is automatically created
  383. ## if this option is enabled (user name format and commands configured below).
  384. ## default: false
  385. #multiuser = true
  386.  
  387. ## Display the output of this command in the panel under
  388. ## "Settings"->"Multicraft Status"
  389. ## default: empty
  390. #infoCmd = uptime
  391. #infoCmdWin =
  392.  
  393. ## The name format for new users, the following variables can be used:
  394. ## - {ID} The server ID
  395. ## default: mc{ID}
  396. userFormat = mc{ID}
  397. ## The name format for new groups, the following variables can be used:
  398. ## - {ID} The server ID
  399. ## - {USER} The full username
  400. ## default: same as userFormat
  401. #groupFormat = {USER}
  402.  
  403. ## The commands to create and delete system users and groups
  404. ## The following variables can be used:
  405. ## - {USER} The full username
  406. ## - {GROUP} The full groupname
  407. ## - {ID} The server ID
  408. ## - {DIR} The server base directory, used as the users home
  409. ## These commands cannot contain escaped quotes or empty arguments
  410. addUser = /usr/sbin/useradd -c "Multicraft Server {ID}" -d "{DIR}" -g "{GROUP}" -s /bin/false "{USER}"
  411. addGroup = /usr/sbin/groupadd "{GROUP}"
  412. delUser = /usr/sbin/userdel "{USER}"
  413. delGroup = /usr/sbin/groupdel "{GROUP}"
  414.  
  415. ## Enable or disable Linux quota support
  416. ## default: false
  417. #enableQuota = false
  418.  
  419. ## The command to set the Linux user quota
  420. ## The following variables can be used:
  421. ## - Variables from "addUser" comment
  422. ## - {QUOTA} The disk space quota in MB
  423. ## - {QUOTA_BLOCKS} The disk space quota in blocks
  424. #setUserQuota = /usr/sbin/setquota -u "{USER}" 0 "{QUOTA_BLOCKS}" 0 0 -a
  425.  
  426. ## The script used to fetch quota usage information for the current user
  427. ## (in blocks)
  428. ## default: scripts/getquota.sh
  429. #quotaCheckScript = scripts/getquota.sh
  430.  
  431. ## The minimum time in seconds between two quota usage checks
  432. ## default: 20
  433. #quotaCheckDelay = 20
  434.  
  435. ## The kernel block size to use for quota calculation
  436. ## default: 1024
  437. #quotaBlockSize = 1024
  438.  
  439. ## Regular expression for filtering file names. Any match gets replaced by "_".
  440. ## Warning: Changing this is potentially dangerous
  441. ## default: [\\/<>:|*?"'&;$~%\0]
  442. #fileFilter = [\\/<>:|*?"'&;$~%\0]
  443.  
  444. ## The command to unpack a zip file. The following variables can be used:
  445. ## - {FILE} The name of the zip archive to restore
  446. ## - {MULTICRAFT_DIR} The daemon base directory
  447. unpackCmd = /usr/bin/unzip -quo "{FILE}"
  448. ## The same setting for Windows systems
  449. unpackCmdWin = "{MULTICRAFT_DIR}\bin\unzip.exe" -quo "{FILE}"
  450.  
  451. ## The command to pack a zip file. The following variables can be used:
  452. ## - {FILE} The name of the zip archive to create
  453. ## - {MULTICRAFT_DIR} The daemon base directory
  454. packCmd = /usr/bin/zip -qr "{FILE}" .
  455. ## The same setting for Windows systems
  456. packCmdWin = "{MULTICRAFT_DIR}\bin\zip.exe" -qr "{FILE}" .
  457.  
  458. ## Settings for Docker support (EXPERIMENTAL)
  459. [docker]
  460. ## Enable Docker support
  461. ## default: false
  462. enabled = false
  463.  
  464. ## The name of the user that the container process should belong to. It's
  465. ## recommended to create a new user that is used just for this, for example:
  466. ## # adduser --disabled-login --no-create-home --ingroup users docker
  467. ## default: docker
  468. #user = docker
  469.  
  470. ## The name of the "docker" group. This group needs to have access to the
  471. ## docker daemon.
  472. ## default: docker
  473. #group = docker
  474.  
  475. ## The full path to the "docker" executable
  476. ## default: /usr/bin/docker
  477. #docker = /usr/bin/docker
  478.  
  479. ## The name of the Docker image to use
  480. ## default: java:jre
  481. #image = java:jre
  482.  
  483. ## Memory in MB to add to server memory value for Docker containers
  484. ## default: 128
  485. #memoryAdd = 128
  486.  
  487. ## CPU factor for each Docker container. Multiplies default CPU shares by this
  488. ## value.
  489. ## default: 1.0
  490. #cpuFactor = 1.0
  491.  
  492. ## If this is enabled the daemon will try to always show the external IP in the
  493. ## server console instead of the IP used in the container.
  494. ## default: true
  495. #maskIp = true
  496.  
  497. ## Format for volume definitions (see mounts below)
  498. ## default: --volume=%s:%s:%s
  499. #volumeFormat = --volume=%s:%s:%s
  500.  
  501. ## Format for environment variable definitions
  502. ## default: --env=%s=%s
  503. #envFormat = --env=%s=%s
  504.  
  505. ## Directories to mount inside the container. Uses the "volumeFormat" setting
  506. ## to mount the directories. Format:
  507. ## HOST_DIR[:[CONTAINER_DIR]:[MODE]]
  508. ## If CONTAINER_DIR is omitted it is set to the same value as HOST_DIR.
  509. ## MODE can be "rw" for writable or "ro" for read-only, defaults to "ro".
  510. #mounts = "{TEMPLATES_DIR}" "{MULTICRAFT_DIR}/scripts" "{DAEMON_JAR_DIR}" "{SERVER_DIR}::rw"
  511.  
  512. ## Additional arguments to pass to Docker
  513. ## default: empty
  514. #arguments =
  515.  
  516. ## The command to start the Docker container. See the [start] section of the
  517. ## default "craftbukkit.jar.conf" for a list of available variables.
  518. ## Additional variables:
  519. ## - {DOCKER_ARGS} The additional arguments from the "arguments" setting
  520. ## - {DOCKER_VOLUMES} The volume arguments generated from the "volumeFormat"
  521. ## and "mounts" settings
  522. ## - {DOCKER_ENVS} The env arguments generated using the "envFormat" setting
  523. ## - {DOCKER_IMAGE} The docker image to use
  524. ## - {DOCKER_MEMORY} The memory limit in MB to use for this container. This is
  525. ## calculated as the server memory limit plus the "memoryAdd" setting
  526. ## - {DOCKER_CPUSHARES} The CPU shares this container can use. This is
  527. ## calculated using the "cpuFactor" setting (1024 * cpuFactor)
  528. ## - {DOCKER_IP} The actual IP setting of the server. When running in a Docker
  529. ## container the {IP} variable is always 0.0.0.0
  530. #command = run --rm -i -a stdin -a stdout -a stderr --read-only --tmpfs /tmp --security-opt=no-new-privileges --cap-drop=ALL {DOCKER_ARGS} -p {DOCKER_IP}:{PORT}:{PORT} -w {WORKING_DIR} -u {UID}:{GID} -m {DOCKER_MEMORY}M --cpu-shares={DOCKER_CPUSHARES} --name=mc{SERVER_ID} {DOCKER_VOLUMES} {DOCKER_ENVS} {DOCKER_IMAGE}
  531.  
  532. ## The command to stop a container when a server did not shut down on its own
  533. ## after a certain period of time
  534. #stopCommand = stop mc{SERVER_ID}
  535.  
  536. ## The command to kill a container when it does not close after sending the
  537. ## stop command
  538. #killCommand = kill mc{SERVER_ID}
  539.  
  540. ## The command to determine the PID of the root process of a container
  541. #pidCommand = inspect -f "{{ .State.Pid }}" mc{SERVER_ID}
  542.  
  543. ## Docker settings can be overridden by conf files of server executables in the
  544. ## [docker] section. This setting is a comma sepparated list of setting types
  545. ## that can be overridden. Valid values:
  546. ## - disable: Allows conf files to run without Docker ("enabled" setting)
  547. ## - image: Allows conf files to change the image name ("image" setting)
  548. ## - settings: Allows conf files to change general settings ("memoryAdd",
  549. ## "cpuFactor", "maskIp" settings)
  550. ## - command: Allows conf files to affect the final docker run command
  551. ## ("mounts", "arguments", "command", "stopCommand", "killCommand")
  552. ## default: image, settings
  553. #override = image, settings
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement