Files
auracaster-webui/docker-compose.yml
T
2025-03-23 16:36:30 +01:00

25 lines
623 B
YAML

services:
webui:
build:
context: .
dockerfile: Dockerfile
ssh:
- default=~/.ssh/id_ed25519 #lappi
ports:
- "8501:8501"
volumes:
- .:/app
environment:
- PYTHONUNBUFFERED=1
# Change this URL if the translator service is running on a different host
- TRANSLATOR_API_URL=http://translator:7999
restart: unless-stopped
# networks:
# - webui-network
# - translator-network
# Uncomment the below if you want the webui to depend on the translator
# when running the two services together
# depends_on:
# - translator