12 lines
172 B
YAML
12 lines
172 B
YAML
version: '3'
|
|
|
|
services:
|
|
radiobot:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
env_file:
|
|
- .env
|
|
command: python3 -u main.py
|
|
restart: always
|