Skip to content

Commit

Permalink
chore: set up docker-compose configs for local dev/prod
Browse files Browse the repository at this point in the history
  • Loading branch information
dustin-jw committed Feb 12, 2024
1 parent c9a2862 commit 326010e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '3.8'
services:
reaction_bot:
image: ghcr.io/sparkbox/reaction-bot:latest
container_name: reaction_bot
restart: always
env_file:
- .env
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: '3.8'
services:
reaction_bot:
build:
context: .
container_name: reaction_bot
restart: always
env_file:
- .env

0 comments on commit 326010e

Please sign in to comment.