himbot/docker-compose.yml

21 lines
365 B
YAML
Raw Normal View History

2024-05-15 10:02:42 -06:00
version: "3"
services:
app:
build:
context: .
dockerfile: Dockerfile
image: your-app-image:latest
command: ["/app"]
pull_policy: build
ports:
- "3000:3000"
environment:
2024-05-15 10:05:16 -06:00
- DISCORD_TOKEN=$DISCORD_TOKEN
- COOLDOWN_ALLOW_LIST=$COOLDOWN_ALLOW_LIST
2024-05-15 10:02:42 -06:00
networks:
2024-05-15 10:10:51 -06:00
default:
external: true
name: nginx_default