15 lines
305 B
YAML
15 lines
305 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
botendo:
|
||
|
container_name: botendo
|
||
|
image: limiteddev/rustendo:0.1.0
|
||
|
environment:
|
||
|
TZ: "Europe/Berlin"
|
||
|
deploy:
|
||
|
resources:
|
||
|
limits:
|
||
|
cpus: "0.5"
|
||
|
memory: 512M
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- ./data:/usr/src/app/data
|