Stop tracking .env and set default in docker-compose.yml
This commit is contained in:
parent
288705b77a
commit
c75168afae
|
|
@ -23,3 +23,7 @@ workspace.xml
|
||||||
|
|
||||||
# Local scratch files
|
# Local scratch files
|
||||||
notes
|
notes
|
||||||
|
|
||||||
|
# Local overrides
|
||||||
|
.env
|
||||||
|
docker-compose.override.yml
|
||||||
|
|
@ -21,7 +21,7 @@ services:
|
||||||
nginx:
|
nginx:
|
||||||
image: nginx:1.15
|
image: nginx:1.15
|
||||||
ports:
|
ports:
|
||||||
- ${PORT}:80
|
- ${PORT:-8080}:80
|
||||||
volumes:
|
volumes:
|
||||||
- .:/usr/local/src/wellrested
|
- .:/usr/local/src/wellrested
|
||||||
- ./docker/nginx/site.conf:/etc/nginx/conf.d/default.conf
|
- ./docker/nginx/site.conf:/etc/nginx/conf.d/default.conf
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue