Skip to content

nafg/docker-firebird-1.5.6-ss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Firebird Dockerfile

Description

Firebird 1.5.6 SuperServer

Provides

Firebird SQL relational database (http://www.firebirdsql.org/).

Volumes

  • /backup
  • /data

Exposed Ports

  • 3050

Env

  • TZ // You can set timezone for your docker container via this variable, if not specified then its default value is "Etc/UTC"

for example add "-e Europe/Sarajevo" to your docker run command.

Firebird credentials

  • Username: SYSDBA
  • Password: masterkey

Run

$ docker run -d \
	--name firebird \	
	-p 3050:3050 \
	-v /somehostdir/firebird/backup/:/backup/ \
	-v /somehostdir/firebird/data/:/data/ \
	mladenp87/firebird1.5.6-ss

Misc

Restore backup

//enter container console
$ docker exec -i -t firebird /bin/bash

//backup
$ gbak -v -t -user SYSDBA -password masterkey localhost:/data/dbname.fdb /backup/dbname.fbk 

 //restore 
$ gbak -c -v -user SYSDBA -password masterkey /backup/dbname.fbk localhost:/data/dbname.fdb

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published