Update docker-compose file
Adding build option for dockerfile
This commit is contained in:
parent
ba2da9dcf9
commit
486f148e19
|
@ -1,9 +1,21 @@
|
|||
version: "3"
|
||||
|
||||
services:
|
||||
whoogle-search:
|
||||
image: benbusby/whoogle-search
|
||||
container_name: whoogle-search
|
||||
ports:
|
||||
- 8888:5000
|
||||
restart: unless-stopped
|
||||
# ----------------------------------------
|
||||
whoogle-search:
|
||||
container_name: whoogle-search
|
||||
hostname: whoogle-search
|
||||
# Uncomment to build from local
|
||||
# build:
|
||||
# dockerfile: Dockerfile
|
||||
# context: .
|
||||
# image: "whoogle-search"
|
||||
image: "benbusby/whoogle-search"
|
||||
restart: always
|
||||
ports:
|
||||
- "5000:5000"
|
||||
environment:
|
||||
- PUID=${PUID} # User uid
|
||||
- PGID=${PGID} # User gid
|
||||
- TZ=${TZ} # TimeZone
|
||||
- WEB_PORT=5000 # Default port 5000
|
||||
|
|
Loading…
Reference in New Issue
Block a user