mirror of
https://github.com/trailbaseio/trailbase.git
synced 2025-12-30 22:29:47 -06:00
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
17 lines
397 B
YAML
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
|