dbgate/docker-compose.yaml

54 lines
1.2 KiB
YAML
Raw Normal View History

# this compose file is for testing purposes only
# use it for testing docker containsers built on local machine
version: "3"
services:
dbgate:
2022-03-24 08:13:33 +00:00
build: docker
2022-02-26 08:54:14 +00:00
# image: dbgate/dbgate:beta-alpine
2022-03-24 08:13:33 +00:00
# image: dbgate/dbgate:alpine
2022-02-28 17:00:14 +00:00
# image: dbgate/dbgate:beta
restart: always
ports:
- 3100:3000
2022-02-24 11:59:45 +00:00
# volumes:
# - /home/jena/dbgate-data:/root/dbgate-data
volumes:
2022-05-17 19:05:48 +00:00
- dbgate-data:/root/.dbgate
2022-02-24 13:42:37 +00:00
2022-03-24 08:00:51 +00:00
# environment:
# WEB_ROOT: /dbgate
2022-02-24 11:59:45 +00:00
2022-02-28 17:00:14 +00:00
# CONNECTIONS: mssql
# LABEL_mssql: MS Sql
# SERVER_mssql: mssql
# USER_mssql: sa
# PORT_mssql: 1433
# PASSWORD_mssql: Pwd2020Db
# ENGINE_mssql: mssql@dbgate-plugin-mssql
2022-03-24 08:00:51 +00:00
# proxy:
# # image: nginx
# build: test/nginx
# ports:
# - 8082:80
2022-02-26 08:54:14 +00:00
2022-02-24 11:59:45 +00:00
# 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
2022-02-28 17:00:14 +00:00
# mssql:
# image: mcr.microsoft.com/mssql/server
# restart: always
# environment:
# - ACCEPT_EULA=Y
# - SA_PASSWORD=Pwd2020Db
# - MSSQL_PID=Express
2022-02-24 11:59:45 +00:00
volumes:
dbgate-data:
driver: local