1
0
mirror of synced 2024-11-21 20:16:02 +03:00
mg-transport-telegram/docker-compose.yml

27 lines
667 B
YAML
Raw Permalink Normal View History

version: '2.1'
services:
postgres:
image: postgres:9.6
environment:
POSTGRES_USER: mg_telegram
POSTGRES_PASSWORD: mg_telegram
POSTGRES_DATABASE: mg_telegram
ports:
2019-03-19 10:33:20 +03:00
- ${POSTGRES_ADDRESS:-127.0.0.1:5432}:${POSTGRES_PORT:-5432}
mg_telegram:
image: golang:1.11-stretch
2018-05-31 15:03:57 +03:00
working_dir: /mgtg
user: ${UID:-1000}:${GID:-1000}
2018-08-17 13:36:25 +03:00
environment:
GOCACHE: /go
volumes:
2018-05-31 15:03:57 +03:00
- ./:/mgtg
2018-05-28 18:16:13 +03:00
- ./static:/static/
links:
- postgres
ports:
- ${MG_TELEGRAM_ADDRESS:-3001}:3001
command: make run