16 lines
249 B
YAML
16 lines
249 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
bot:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile
|
|
container_name: marzban_bot
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ../:/app
|
|
env_file:
|
|
- ../.env
|
|
ports:
|
|
- "8888:8888"
|