Files
trailbase/docs/docker-compose.yml
Sebastian Jeltsch bdb3735840 Squash all commits for a fresh start.
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
2024-10-30 23:38:56 +01:00

17 lines
397 B
YAML

version: "3.9"
services:
trailbase-docs:
container_name: trailbase-docs
build: .
ports:
- "127.0.0.1:3036:80/tcp"
restart: unless-stopped
# By default containers get 1024 cpu shares. Setting it to 512 means half
# the resources compared to a default container. And 2048 double,
# respectively.
cpu_shares: 1024
mem_limit: 128m
oom_score_adj: -200