Skip to content

Commit

Permalink
demo
Browse files Browse the repository at this point in the history
  • Loading branch information
webees authored Nov 15, 2024
1 parent 1979d44 commit 06b7c54
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# Run xboard with environment variables only
```shell
docker pull ghcr.io/webees/xboard:latest
# DEMO
```docker-compose
version: '3'
services:
xboard:
image: ghcr.io/webees/xboard:latest
container_name: xboard
environment:
- APP_KEY=${APP_KEY}
- DB_HOST=${DB_HOST}
- DB_DATABASE=${DB_DATABASE}
- DB_USERNAME=${DB_USERNAME}
- DB_PASSWORD=${DB_PASSWORD}
- REDIS_HOST=${REDIS_HOST}
ports:
- "7001:7001"
restart: unless-stopped
```

0 comments on commit 06b7c54

Please sign in to comment.