-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
58 lines (57 loc) · 1.92 KB
/
action.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: 'Setup FirebirdSQL'
description: 'Setup a FirebirdSQL database running in a docker container'
author: 'juarezr'
branding:
icon: 'database'
color: 'blue'
inputs:
# See https://hub.docker.com/r/jacobalberty/firebird for supported versions
# and further details on input environment variables
version:
description: 'Version of firebirdsql to use: latest, v4, v4.0, v4.0.2, v3, v3.0, v3.0.10, 2.5-ss, 2.5-sc. See: jacobalberty/firebird'
required: false
default: 'latest'
port:
description: 'Port published in the host for connecting in the database. Default: 3050.'
required: false
default: '3050'
firebird_database:
description: 'Optional name for creating a database with the container'
required: false
default: ''
firebird_user:
description: 'Optional name for creating a user that is database owner with the container'
required: false
default: ''
firebird_password:
description: 'Optional password for the user created'
required: false
default: ''
isc_password:
description: 'Default sysdba user password, if left blank a random 20 character password will be set instead'
required: false
default: ''
timezone:
description: 'Server TimeZone. (i.e. America/Sao_Paulo)'
required: false
default: ''
enable_legacy_client_auth:
description: 'If this is set to "true" it will allow legacy clients to connect and authenticate.'
required: false
default: ''
enable_wire_crypt:
description: 'If this is set to "true" it will allow allow compatibility with Jaybird 3.'
required: false
default: ''
data_type_compatibility:
description: 'Enable datatype compatibility for clients with previews versions: `3.0` and `2.5`.'
required: false
default: ''
container_name:
description: 'The name for tagging the container'
required: false
default: 'firebirdsql'
runs:
using: 'docker'
image: 'Dockerfile'
# end of file