This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
know-it-all/docker-compose.prod.yml

38 lines
720 B
YAML

version: '3.8'
services:
client:
restart: unless-stopped
build:
context: ./client
platforms:
- linux/amd64
- linux/arm64/v8
image: c4thebomb/know-it-all-client
ports:
- 127.0.0.1:3000:3000
networks:
- know-it-all
server:
restart: unless-stopped
image: c4thebomb/know-it-all-server
build:
context: ./server
platforms:
- linux/amd64
- linux/arm64/v8
ports:
- 127.0.0.1:3001:3000
networks:
- know-it-all
- common-network
env_file:
- path: .env
required: true
environment:
CHOKIDAR_USEPOLLING: true
networks:
common-network:
external: true
know-it-all: {}