We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 806c01a commit 23a6f95Copy full SHA for 23a6f95
README.md
@@ -35,6 +35,8 @@ docker run -e AOC_SLACK_LEADERBOARD_ID=<leaderboard_id> \
35
1grzyb1/aoc-slack:latest
36
```
37
38
+or use example `docker-compose.yml`. Pass there your variables and just run `docker-compose up -d`
39
+
40
#### Properties description
41
42
| Property | Description |
docker-compose.yml
@@ -0,0 +1,12 @@
1
+version: '3.8'
2
3
+services:
4
+ aoc-slack:
5
+ image: 1grzyb1/aoc-slack:latest
6
+ container_name: aoc-slack
7
+ environment:
8
+ - AOC_SLACK_LEADERBOARD_ID={LEADERBOARD_ID}
9
+ - AOC_SLACK_SESSION={AOC_SESSION}
10
+ - AOC_SLACK_WEBHOOK_URL={SLACK_WEBHOOK_URL}
11
+ network_mode: host
12
+ restart: always
0 commit comments