Files
nexus-terminal/docker-compose.yml
T
Baobhan Sith fe8959c869 update
2025-04-26 15:41:28 +08:00

29 lines
549 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
frontend:
image: heavrnl/nexus-terminal-frontend
container_name: nexus-terminal-frontend
ports:
- "18111:80"
depends_on:
- backend
networks:
- nexus-terminal-network
backend:
image: heavrnl/nexus-terminal-backend
container_name: nexus-terminal-backend
ports:
- "18112:3001"
environment:
NODE_ENV: production
PORT: 3001
volumes:
- ./data:/app/data
networks:
- nexus-terminal-network
networks:
nexus-terminal-network:
driver: bridge