You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
745 B
YAML

version: '3.8'
services:
frontend:
platform: linux/arm64/v8
build:
context: frontend
target: development
container_name: firstsoftwarrior-shop-frontend
ports:
- "8090:8090"
environment:
- NODE_ENV=development
volumes:
- ./frontend:/frontend
- /frontend/node_modules
depends_on:
- backend
backend:
platform: linux/arm64/v8
build:
context: backend
target: builder
container_name: firstsoftwarrior-shop-backend
ports:
- '8091:8091'
environment:
- DEBUG=True
- ALLOWED_HOSTS=localhost,127.0.0.1,192.168.1.100,backend,shop.softwarrior.ru
volumes:
- ./backend:/backend
networks:
default:
name: game-shop-net