fix: remove unnecessary braces from image URL in docker-compose configuration
This commit is contained in:
parent
54de35d403
commit
4c0b162112
|
|
@ -2,7 +2,7 @@ version: '3.9'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: https://${{ GIT_HOST }}/${{ GIT_USER }}/${{ GIT_REPO }}:app
|
image: https://${GIT_HOST}/${GIT_USER}/${GIT_REPO}:app
|
||||||
command: uvicorn app.main:app --host 0.0.0.0 --port 8000
|
command: uvicorn app.main:app --host 0.0.0.0 --port 8000
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue