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.

37 lines
744 B
YAML

version: '3.8'
services:
frontend:
platform: linux/arm64/v8
image: firstsoftwarrior/shop-frontend
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
image: firstsoftwarrior/shop-backend
build:
context: backend
target: builder
container_name: firstsoftwarrior-shop-backend
ports:
- '8091:8091'
environment:
- DEBUG=True
volumes:
- ./backend:/backend
networks:
default:
name: game-shop-net