mirror of
https://github.com/sotam0316/brain_dogfood.git
synced 2026-04-24 19:48:35 +09:00
24 lines
452 B
YAML
24 lines
452 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
memo-server:
|
|
build: .
|
|
container_name: brain-dogfood
|
|
restart: always
|
|
ports:
|
|
- "5093:5093"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./static/uploads:/app/static/uploads
|
|
- ./logs:/app/logs
|
|
- ./config.json:/app/config.json
|
|
environment:
|
|
- TZ=Asia/Seoul
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|