blob: afab23bb5138d0dea2a0d778a3d1a6ea2bf5ce4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
captainVersion: 4
services:
'$$cap_appname':
image: openrct2/openrct2-cli:$$cap_version
environment:
TZ: '$$cap_tz'
PHP_TZ: '$$cap_tz'
volumes:
- '$$cap_appname-data:/home/openrct2/.config/OpenRCT2'
- '/var/lib/docker/volumes/captain--next-data/_data/data/admin/files/Documents/rct2/openrct2/Scenarios/RCT2:/home/openrct2/Parks'
ports:
- 11753:11753
caproverExtra:
containerHttpPort: '11753'
dockerfileLines: ENTRYPOINT ["openrct2-cli", "host", "/home/openrct2/Parks/Bumbly Bazaar.SC6", "--port", "11753", "--verbose"]
caproverOneClickApp:
variables:
- id: '$$cap_version'
label: OpenRCT2 Version
defaultValue: '0.4.11'
description: Check out their Docker page for the valid tags https://hub.docker.com/r/openrct2/openrct2-cli/tags
validRegex: "/^([^\\s^\\/])+$/"
- id: '$$cap_tz'
label: Time Zone
defaultValue: America/New_York
description: Get yours from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
validRegex: '/.{1,}/'
instructions:
start: |-
Server for hosting OpenRCT2 games.
end: |-
OpenRCT2 has been successfully deployed!
displayName: OpenRCT2
isOfficial: true
description: Open source reimplementation of OpenRCT2, hosts multiplayer games.
documentation: See https://github.com/OpenRCT2/openrct2-docker
|