Fixed 2 bugs in docker-compose files
This commit is contained in:
parent
7f01b9b466
commit
cb447ed7c0
|
|
@ -10,7 +10,7 @@ services:
|
||||||
- app-network
|
- app-network
|
||||||
|
|
||||||
nginx:
|
nginx:
|
||||||
image: nginx:alpine
|
image: nginx
|
||||||
container_name: nginx_spring
|
container_name: nginx_spring
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,8 @@ services:
|
||||||
- .:/app # Mount your local directory into the container so that live changes are detected
|
- .:/app # Mount your local directory into the container so that live changes are detected
|
||||||
|
|
||||||
nginx:
|
nginx:
|
||||||
image: nginx_flask
|
image: nginx
|
||||||
|
container_name: nginx_flask
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue