Skip to content

Instantly share code, notes, and snippets.

@termitkin
Last active August 20, 2021 08:52
Show Gist options
  • Save termitkin/966ebfb4cfa71057cdbde19bbab0afb6 to your computer and use it in GitHub Desktop.
Save termitkin/966ebfb4cfa71057cdbde19bbab0afb6 to your computer and use it in GitHub Desktop.
docker-compose файл для запуска tinkoff-invest
version: "3"
services:
frontend:
image: termitkin/tinkoff-invest-frontend
restart: unless-stopped
ports:
- 3500:5000
depends_on:
- backend
backend:
image: termitkin/tinkoff-invest-backend
restart: unless-stopped
ports:
- 3025:3025
- 3026:3026
environment:
- TZ=Europe/Moscow
- APP_NAME
- BOT_TOKEN
- OWNER_ID
- secretToken
env_file:
- .env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment