mirror of
https://github.com/danog/TelegramApiServer.git
synced 2024-11-26 20:04:45 +01:00
17 lines
386 B
YAML
17 lines
386 B
YAML
version: '3'
|
|
services:
|
|
telegram-api-server:
|
|
build: ./
|
|
image: xtrime/telegram-api-server:latest
|
|
container_name: telegram-api-server
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:9503:9503"
|
|
volumes:
|
|
- ./:/app-host-link
|
|
working_dir: /app-host-link
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "1024k"
|
|
max-file: "2" |