Skip to content

Commit

Permalink
chore: add docker admin test compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
moonrailgun committed May 11, 2023
1 parent 8818c03 commit 9eb470f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions server/admin/test/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: "3.3"

services:
# 后台应用
tailchat-admin:
image: tailchat
restart: unless-stopped
env_file: ../../../docker-compose.env
environment:
ADMIN_PASS: tailchat
depends_on:
- mongo
- redis
ports:
- 13000:3000
command: pnpm start:admin

# Database
mongo:
image: mongo:4
restart: on-failure

# Data cache and Transporter
redis:
image: redis:alpine
restart: on-failure

0 comments on commit 9eb470f

Please sign in to comment.