mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-29 22:43:58 +00:00
feat: add firebird to to tests compose
This commit is contained in:
@@ -89,3 +89,28 @@ services:
|
|||||||
# - '5002:5001'
|
# - '5002:5001'
|
||||||
# volumes:
|
# volumes:
|
||||||
# - ./data/libsql:/var/lib/sqld
|
# - ./data/libsql:/var/lib/sqld
|
||||||
|
|
||||||
|
firebird:
|
||||||
|
image: firebirdsql/firebird:latest
|
||||||
|
container_name: firebird-db
|
||||||
|
environment:
|
||||||
|
- FIREBIRD_DATABASE=mydatabase.fdb
|
||||||
|
- FIREBIRD_USER=dbuser
|
||||||
|
- FIREBIRD_PASSWORD=dbpassword
|
||||||
|
- ISC_PASSWORD=masterkey
|
||||||
|
- FIREBIRD_TRACE=false
|
||||||
|
- FIREBIRD_USE_LEGACY_AUTH=true
|
||||||
|
ports:
|
||||||
|
- '3050:3050'
|
||||||
|
volumes:
|
||||||
|
- firebird-data:/firebird/data
|
||||||
|
- ./firebird.conf:/firebird/firebird.conf # Mount custom config file
|
||||||
|
healthcheck:
|
||||||
|
test: ['CMD', 'nc', '-z', 'localhost', '3050']
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
firebird-data:
|
||||||
|
|||||||
Reference in New Issue
Block a user