An open API service indexing awesome lists of open source software.

https://github.com/yuler/micros

Some micro services
https://github.com/yuler/micros

Last synced: about 1 year ago
JSON representation

Some micro services

Awesome Lists containing this project

README

          

# Micros Server

## Docker Compose Config

```yml
version: '2'

services:
slack-command:
image: yule/slack-command
ports:
- 3000:3000
env_file:
- ./gitlab-token.env
- ./slack-command-tokens.env
volumes:
- .env:/src/.env

gitlab-webhook:
image: yule/gitlab-webhook
ports:
- 3001:3000
env_file:
- ./slack-webhook.env
- ./gitlab-webhook-secret-token.env
- ./gitlab-slack-user-map.env
volumes:
- .env:/src/.env

```