Files
siren/bot/docker-compose.yml
Benjamin Sherriff 1b41849115 Added ui
2023-10-05 09:07:53 -04:00

22 lines
341 B
YAML

version: '3.8'
name: siren
services:
bot:
image: siren-bot:${BOT_VERSION:-latest}
container_name: siren-bot
build:
context: .
dockerfile: ./Dockerfile
args:
- VERSION=${BOT_VERSION:-latest}
env_file:
- .env
networks:
- frontend
restart: unless-stopped
networks:
frontend: