Merge pull request #1406 from vjrngn/patch-1
Reference beanstalkd-console host port environment variable in docker-compose.yml
This commit is contained in:
commit
c4aef8e901
|
@ -818,6 +818,8 @@ docker-compose up -d beanstalkd-console
|
||||||
|
|
||||||
2 - Open your browser and visit `http://localhost:2080/`
|
2 - Open your browser and visit `http://localhost:2080/`
|
||||||
|
|
||||||
|
_Note: You can customize the port on which beanstalkd console is listening by changing `BEANSTALKD_CONSOLE_HOST_PORT` in `.env`. The default value is *2080*._
|
||||||
|
|
||||||
3 - Add the server
|
3 - Add the server
|
||||||
|
|
||||||
- Host: beanstalkd
|
- Host: beanstalkd
|
||||||
|
|
|
@ -429,7 +429,7 @@ services:
|
||||||
beanstalkd-console:
|
beanstalkd-console:
|
||||||
build: ./beanstalkd-console
|
build: ./beanstalkd-console
|
||||||
ports:
|
ports:
|
||||||
- "2080:2080"
|
- "${BEANSTALKD_CONSOLE_HOST_PORT}:2080"
|
||||||
depends_on:
|
depends_on:
|
||||||
- beanstalkd
|
- beanstalkd
|
||||||
networks:
|
networks:
|
||||||
|
|
Loading…
Reference in New Issue