22 lines
390 B
YAML
22 lines
390 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
frontend:
|
|
container_name: no-copy-admin-panel-frontend
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "2996:2996"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=2996
|
|
- DOCKER_ENV=true
|
|
restart: unless-stopped
|
|
networks:
|
|
- app-network
|
|
|
|
networks:
|
|
app-network:
|
|
external: true
|
|
name: app-network |