mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
ea6d9226d7
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
11 lines
206 B
YAML
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
|