diff options
Diffstat (limited to 'compose.yaml')
| -rw-r--r-- | compose.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..0952f11 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,16 @@ +services: + bot: + image: bnbmc-announcement-bot + hostname: bot + restart: unless-stopped + volumes: + - ./database.db:/database.db + - ./.env:/bot/.env + web: + image: bnbmc-announcement-bot-api + hostname: api + restart: unless-stopped + volumes: + - ./database.db:/database.db + ports: + - "3000:3000" |
