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.
csmb-housewars/docker-compose.prod.yml

27 lines
483 B
YAML

version: '3.8'
services:
app:
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
platforms:
- linux/amd64
- linux/arm64/v8
image: c4thebomb/csmb-housewars:${TAG:-latest}
env_file:
- path: .env
required: true
ports:
- 127.0.0.1:8000:8000
networks:
- housewars
- common-network
external_links:
- mysqldb
networks:
common-network:
external: true
housewars: {}