import { VersionedServicesConfig } from '@bmd-studio/genstack-cli'; const services: VersionedServicesConfig = { version: 1, config: { services: [ { active: true, name: 'traefik', repository: { url: 'https://github.com/bmd-studio/genstack-container-traefik.git', ref: 'v1.0.2', }, }, { active: true, name: 'postgresql', repository: { url: 'https://github.com/bmd-studio/genstack-container-postgresql.git', ref: 'v1.0.6', }, }, { active: true, name: 'pg-jwt-auth', repository: { url: 'https://github.com/bmd-studio/genstack-container-pg-jwt-auth.git', ref: 'v1.0.8', }, }, { active: true, name: 'pg-to-mqtt', repository: { url: 'https://github.com/bmd-studio/genstack-container-pg-to-mqtt.git', ref: 'v1.0.3', }, }, { active: true, name: 'postgraphile', repository: { url: 'https://github.com/bmd-studio/genstack-container-postgraphile.git', ref: 'v1.0.7', }, path: 'src/services/postgraphile', }, { active: true, name: 'vernemq', repository: { url: 'https://github.com/bmd-studio/genstack-container-vernemq.git', ref: 'v1.0.2', }, }, { active: true, name: 'pgadmin', repository: { url: 'https://github.com/bmd-studio/genstack-container-pgadmin.git', ref: 'v1.0.2', }, }, { active: false, name: 'portainer', repository: { url: 'https://github.com/bmd-studio/genstack-container-portainer.git', ref: 'v1.0.2', }, }, // { // active: false, // name: 'vpn-client', // extends: '@bmd-studio/genstack-container-vpn-client', // }, ], }, }; export default services;