O2Sound_ver2_final/docker-compose.frontend.yml

16 lines
401 B
YAML

version: '3.3'
services:
sound_fe:
container_name: sound_fe_container
build:
context: ./frontend
args:
- VITE_API_BASE_URL=https://o2sound-api.o2o.kr
ports:
- "12200:3300"
environment:
- NODE_ENV=local
- NEXTAUTH_URL=https://o2sound.o2o.kr/
command: ["sh", "-c", "npm run build:skip-tsc && npm run preview:host"]
restart: unless-stopped