first commit

This commit is contained in:
2026-03-14 13:23:30 +09:00
commit 2b6f6860ed
10 changed files with 92 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
services:
moani:
image: api/moani
build:
context: .
dockerfile: Dockerfile
container_name: moani # 컨테이너 이름을 로그와 일치시킵니다.
ports:
- "2100:9000"
environment:
- TZ=Asia/Seoul
volumes:
- /docker/moani:/app
restart: always