1
0
mirror of synced 2024-11-22 12:26:02 +03:00
mg-transport-telegram/docker-compose.yml

25 lines
622 B
YAML
Raw 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:
2018-05-31 15:03:57 +03:00
- ${POSTGRES_ADDRESS:-127.0.0.1:5434}:${POSTGRES_PORT:-5432}
mg_telegram:
image: golang:1.9.3-stretch
2018-05-31 15:03:57 +03:00
working_dir: /mgtg
user: ${UID:-1000}:${GID:-1000}
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