Update docker-compose file
Adding build option for dockerfile
This commit is contained in:
parent
ba2da9dcf9
commit
486f148e19
|
@ -1,9 +1,21 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
whoogle-search:
|
# ----------------------------------------
|
||||||
image: benbusby/whoogle-search
|
whoogle-search:
|
||||||
container_name: whoogle-search
|
container_name: whoogle-search
|
||||||
ports:
|
hostname: whoogle-search
|
||||||
- 8888:5000
|
# Uncomment to build from local
|
||||||
restart: unless-stopped
|
# 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