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

23 lines
594 B
YAML
Raw Normal View History

version: '2.1'
services:
2018-05-25 18:17:31 +03:00
postgres:
image: postgres:9.6
environment:
POSTGRES_USER: mg_telegram_test
POSTGRES_PASSWORD: mg_telegram_test
POSTGRES_DATABASE: mg_telegram_test
ports:
- ${POSTGRES_ADDRESS:-127.0.0.1:5450}:${POSTGRES_PORT:-5450}
2018-05-25 18:17:31 +03:00
mg_telegram:
image: golang:1.9.3-stretch
working_dir: /mg_telegram
user: ${UID:-1000}:${GID:-1000}
volumes:
- ./:/mg_telegram/
links:
2018-05-25 18:17:31 +03:00
- postgres
2018-05-25 16:01:58 +03:00
ports:
- ${MG_TELEGRAM_ADDRESS:-3002}:3002