diff options
author | terminaldweller <thabogre@gmail.com> | 2021-02-21 21:14:09 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-02-21 21:14:09 +0000 |
commit | c9876c40703b6723f94eea5638a0779c0550b2d7 (patch) | |
tree | 47e8946c2b7b47a35a96ba9b0d4341e3d5c83ede /docker-compose.yaml | |
parent | Initial commit (diff) | |
download | hived-c9876c40703b6723f94eea5638a0779c0550b2d7.tar.gz hived-c9876c40703b6723f94eea5638a0779c0550b2d7.zip |
the price end point works, the telegram bot is only echo though
Diffstat (limited to '')
-rw-r--r-- | docker-compose.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..8ac47b4 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,18 @@ +version: "3.8" +services: + hived: + image: hived + build: + context: ./ + secrets: + - tg_bot_token + networks: + - hivednet + restart: unless-stopped + ports: + - "8008:8008" +networks: + hivednet: +secrets: + tg_bot_token: + file: ./tgtoken.json |