36 lines
684 B
YAML
36 lines
684 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
# dev:
|
|
# build:
|
|
# context: .
|
|
# target: dev
|
|
# image: menuscene-dev
|
|
# container_name: menuscene-dev
|
|
# ports:
|
|
# - "3000:3000" # Vite HTTPS dev server
|
|
# volumes:
|
|
# - .:/app
|
|
# - /app/node_modules
|
|
# environment:
|
|
# - NODE_ENV=development
|
|
# command: ["npm", "run", "start"]
|
|
|
|
prod:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: menuscene-prod
|
|
container_name: menuscene-prod
|
|
ports:
|
|
- "8090:8080"
|
|
- "444:443"
|
|
networks:
|
|
local_sandbox_2:
|
|
ipv4_address: 172.27.0.118
|
|
|
|
networks:
|
|
local_sandbox_2:
|
|
external: true
|
|
name: local_sandbox_2
|