mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 12:13:57 +00:00
28 lines
629 B
YAML
28 lines
629 B
YAML
# this compose file is for testing purposes only
|
|
# use it for testing docker containsers built on local machine
|
|
version: "3"
|
|
services:
|
|
dbgate:
|
|
build: docker
|
|
# image: dbgate/dbgate:beta
|
|
restart: always
|
|
ports:
|
|
- 3100:3000
|
|
# volumes:
|
|
# - /home/jena/dbgate-data:/root/dbgate-data
|
|
|
|
volumes:
|
|
- dbgate-data:/root/dbgate-data
|
|
|
|
# volumes:
|
|
# - /home/jena/test/chinook:/mnt/sqt
|
|
# environment:
|
|
# CONNECTIONS: sqlite
|
|
|
|
# LABEL_sqlite: sqt
|
|
# FILE_sqlite: /mnt/sqt/Chinook.db
|
|
# ENGINE_sqlite: sqlite@dbgate-plugin-sqlite
|
|
|
|
volumes:
|
|
dbgate-data:
|
|
driver: local |