mirror of
https://github.com/cloudmaker97/FS25-Discord-Bot.git
synced 2025-12-06 00:18:34 +00:00
Added docker compose file for running in local instance
This commit is contained in:
parent
e84bd0c9da
commit
e720026696
2 changed files with 11 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -3,7 +3,6 @@
|
||||||
.idea
|
.idea
|
||||||
.ddev
|
.ddev
|
||||||
config.json
|
config.json
|
||||||
|
|
||||||
config.prod.json
|
config.prod.json
|
||||||
config.test.json
|
config.test.json
|
||||||
config.dev.json
|
config.dev.json
|
||||||
11
docker-compose.yml
Normal file
11
docker-compose.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
version: "2"
|
||||||
|
|
||||||
|
services:
|
||||||
|
ls25bot:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
container_name: ls25bot
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./config.json:/app/config.json
|
||||||
Loading…
Reference in a new issue