salix/docker-compose.test.yml

48 lines
1.0 KiB
YAML

version: "3.7"
services:
# node_modules:
# image: node:20-bullseye-slim
# command: npm install --ci
# working_dir: /salix
# volumes:
# - .:/salix
# print:
# image: node:20-bullseye-slim
# # command: cd print && npm install --ci
# working_dir: /salix/print
# volumes:
# - ./print:/salix/print
db:
image: db:test
restart: always
build:
context: db
dockerfile: Dockerfile
ports:
- 3306:3306
front:
image: front
restart: always
command: ["npm", "run", "test:front:ci"]
build:
context: .
dockerfile: front/Dockerfile.test
depends_on:
- back
back:
image: back
restart: always
build:
context: .
dockerfile: back/Dockerfile
target: test
environment:
- NODE_ENV
depends_on:
- db
networks:
stack-network:
driver: host