pass env vars through docker-compose.yml
This commit is contained in:
parent
3a9c68f21c
commit
1ae3ef7a03
@ -18,7 +18,7 @@ This repo contains Docker build files for a Discord bot built with Node.js and u
|
|||||||
git clone https://git.ssh.surf/MrTuxedo/gwei-alert-bot.git
|
git clone https://git.ssh.surf/MrTuxedo/gwei-alert-bot.git
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Add the following environment variables to the runtime container via `docker-compose.yml`:
|
2. Create a .env file in the root of the project and add the following environment variables:
|
||||||
|
|
||||||
```makefile
|
```makefile
|
||||||
RPC_URL=<your rpc url>
|
RPC_URL=<your rpc url>
|
||||||
@ -54,7 +54,7 @@ docker compose up -d --build
|
|||||||
|
|
||||||
## Environment Variables
|
## Environment Variables
|
||||||
|
|
||||||
The following environment variables must be set in `docker-compose.yml` in order for the bot to function properly:
|
The following environment variables must be set in either `.env` or `docker-compose.yml` in order for the bot to function properly:
|
||||||
|
|
||||||
- RPC_URL: Your RPC url
|
- RPC_URL: Your RPC url
|
||||||
- DISCORD_BOT_TOKEN: the Oauth2 token for your Discord bot.
|
- DISCORD_BOT_TOKEN: the Oauth2 token for your Discord bot.
|
||||||
|
@ -23,6 +23,9 @@ services:
|
|||||||
- 1.1.1.1
|
- 1.1.1.1
|
||||||
environment:
|
environment:
|
||||||
- NODE_ENV=production
|
- NODE_ENV=production
|
||||||
|
- DISCORD_BOT_TOKEN
|
||||||
|
- DISCORD_CLIENT
|
||||||
|
- RPC_URL
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
|
Loading…
Reference in New Issue
Block a user