Skip to content

ControlSoft-Labs/Firebird-Docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Firebird SQL Server Docker Image

Firebird SQL Server Docker Image Size (latest by date) Docker Pulls

Dockerfile to build a Firebird SQL Server container image which can be linked to other containers.

Supported Docker tags

3.0, 3.0.4, latest (Dockerfile)

Installation

docker pull controlsoft/firebird

Quick Start

Run the Firebird image

docker run --name firebird -d controlsoft/firebird

...with docker-compose

version: "2"
services:
  firebird:
    restart: always
    image: controlsoft/firebird
    container_name: firebird
    ports:
      - 3050:3050
      - 3051:3051
    volumes:
      - C:\databases:/databases # Windows
      - /home/user/databases:/databases # Linux
    environment:
      - PASSWORD=masterkey

Result...

docker logs firebird

Firebird Docker

Volume:

/databases

Default location to put database files

Environment Variables:

PASSWORD

Sysdba user password, if blank a random 10 character password will be set. The password used will be placed in /opt/firebird/SYSDBA.password.

WIRECRYPT (default true)

If this is set to true this will set WireCrypt = enabled to allow compatibility with Jaybird 3 (DBeaver, etc)

Default Ports

Firebird: 3050/TCP

Firebird Events: 3051/TCP

Releases

No releases published

Packages

No packages published