24 lines
587 B
YAML
24 lines
587 B
YAML
|
version: '2.1'
|
||
|
|
||
|
services:
|
||
|
postgres:
|
||
|
image: postgres:9.6
|
||
|
environment:
|
||
|
POSTGRES_USER: mg_telegram
|
||
|
POSTGRES_PASSWORD: mg_telegram
|
||
|
POSTGRES_DATABASE: mg_telegram
|
||
|
ports:
|
||
|
- ${POSTGRES_ADDRESS:-127.0.0.1:5434}:5432
|
||
|
|
||
|
mg_telegram:
|
||
|
image: golang:1.9.3-stretch
|
||
|
working_dir: /mg_telegram
|
||
|
user: ${UID:-1000}:${GID:-1000}
|
||
|
volumes:
|
||
|
- ./:/mg_telegram/
|
||
|
links:
|
||
|
- postgres
|
||
|
ports:
|
||
|
- ${MG_TELEGRAM_ADDRESS:-3001}:3001
|
||
|
command: make run
|