https://github.com/yuler/micros
Some micro services
https://github.com/yuler/micros
Last synced: about 1 year ago
JSON representation
Some micro services
- Host: GitHub
- URL: https://github.com/yuler/micros
- Owner: yuler
- Created: 2018-08-07T09:24:06.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-25T00:30:12.000Z (almost 4 years ago)
- Last Synced: 2025-04-06T12:13:21.612Z (about 1 year ago)
- Language: JavaScript
- Size: 68.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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
```