mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-22 23:18:05 +03:00
40 lines
904 B
YAML
40 lines
904 B
YAML
services:
|
|
mongo:
|
|
container_name: mongo
|
|
image: mongo:5
|
|
restart: unless-stopped
|
|
ports:
|
|
- "27017:27017"
|
|
volumes:
|
|
- tachi-volume:/data/db
|
|
redis:
|
|
container_name: redis
|
|
command: redis-server --save 60 1 --loglevel warning
|
|
image: redis:6
|
|
restart: unless-stopped
|
|
ports:
|
|
- "6379:6379"
|
|
volumes:
|
|
- tachi-redis:/data
|
|
tachi-dev:
|
|
user: "1000:1000"
|
|
tty: true
|
|
container_name: tachi-dev
|
|
build:
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- "8080:8080" # server
|
|
- "3000:3000" # client
|
|
- "3001:3001" # docs
|
|
volumes:
|
|
- ./:/tachi
|
|
# Mount your home files under your-pc, so you can easily access them
|
|
- ~:/host-pc
|
|
# don't let pnpm's node_modules linkery bleed out of its container
|
|
- /tachi/node_modules/
|
|
- /tachi/.pnpm-store
|
|
volumes:
|
|
tachi-volume:
|
|
tachi-redis:
|
|
tachi-logs:
|