15 lines
225 B
YAML
15 lines
225 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
todemon:
|
|
build: .
|
|
container_name: todemon
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|