graphql-engine/dc-agents/sqlite/test/docker-compose.yml
Matthew Goodwin ea6d9226d7 Sql lite testing revisions
As I have been onboarding, in order to get a working sqlite agent/db running locally, I got some helpful steps from @mattshardman which I adapted into this testing setup.

Hopefully this should ease the pain for the next person needing to do this!

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6261
GitOrigin-RevId: 03a3f04e38f118898bfd1d27de9305739dee5276
2022-10-12 20:28:24 +00:00

11 lines
206 B
YAML

version: '3.9'
services:
sqlite_agent:
container_name: 'sqlite_agent'
image: 'sqlite-agent'
network_mode: 'bridge'
ports:
- '8100:8100'
volumes:
- ./chinook.db:/chinook.db