14 lines
277 B
YAML
14 lines
277 B
YAML
services:
|
|
frostbot:
|
|
container_name: frostbot
|
|
image: ghcr.io/frostbide/frostbot:latest
|
|
stdin_open: true
|
|
tty: true
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- ./src/data:/app/src/data
|