mirror of
https://git.mirrors.martin98.com/https://github.com/danielgatis/rembg
synced 2025-04-18 11:49:48 +08:00
16 lines
258 B
YAML
16 lines
258 B
YAML
---
|
|
# You can set variables in .env file in root folder
|
|
#
|
|
# PUBLIC_PORT=7000:7000
|
|
# REPLICAS_COUNT=1
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
command: ["s"]
|
|
deploy:
|
|
replicas: ${REPLICAS_COUNT:-1}
|
|
ports:
|
|
- ${PUBLIC_PORT:-7000:7000}
|
|
version: '3'
|