-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
39 lines (34 loc) · 958 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
# hangman: #Docker compose for Hangman
# build:
# context: ./Hangman
# dockerfile: Dockerfile
# environment:
# - BOT_TOKEN=${HANGMAN_TOKEN}
# restart: unless-stopped
# intro: #Docker compose for intro
# build:
# context: ./intros
# dockerfile: Dockerfile
# environment:
# - BOT_TOKEN=${INTRO_TOKEN}
# restart: unless-stopped
# welosttheround: #Docker compose we lost the round
# build:
# context: ./WeLostTheRound
# dockerfile: Dockerfile
# environment:
# - BOT_TOKEN=${WE_LOST_THE_ROUND_TOKEN}
# restart: unless-stopped
drusic:
build:
context: ./drusic
dockerfile: Dockerfile
environment:
- BOT_TOKEN=${DRUSIC_TOKEN}
- SPOTIFY_TOKEN=${SPOTIFY_TOKEN}
- SPOTIFY_CLIENT_ID=${SPOTIFY_CLIENT_ID}
- GENIUS_TOKEN=${GENIUS_TOKEN}
volumes:
- ./drusic/data:/app/data
restart: unless-stopped