Add Docker Compose support (#205)

imgbot
CTome 2023-09-20 15:36:06 +01:00 committed by GitHub
parent 531f1a0c4b
commit 58cdd4a789
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3734 additions and 3679 deletions

View File

@ -49,6 +49,12 @@ docker run -d \
kieranr27/hullcss:main
```
Or if you are using Docker Compose
```
docker compose up -d
```
Using a tool like [Ouroboros](https://github.com/gmt2001/ouroboros), you can automatically update containers without the need for restarts.
### 👷 Manual

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: '3'
services:
HullCSSDiscordBot:
container_name: HullCSSBot
image: kieranr27/hullcss:main
restart: unless-stopped
ports:
- 6001:6001
env_file:
- PATH-TO-ENV-VAR-FILE

7397
yarn.lock

File diff suppressed because it is too large Load Diff