Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 602 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 602 Bytes

firebird

Firebird database connector for the V language.

Development

# Start a Firebird container
podman run \
  --rm \
  --detach \
  --name=firebird-server \
  --env=FIREBIRD_ROOT_PASSWORD=rootpwd \
  --env=FIREBIRD_USER=fbusr \
  --env=FIREBIRD_PASSWORD=fbpwd \
  --env=FIREBIRD_DATABASE=firebird.fdb \
  --env=FIREBIRD_DATABASE_DEFAULT_CHARSET=UTF8 \
  --volume=firebird-data:/var/lib/firebird/data \
  --publish=3050:3050 \
  ghcr.io/fdcastel/firebird