cleanup and review suggestions - makefile and links

Signed-off-by: Grant Birkinbine <grant.birkinbine@gmail.com>
This commit is contained in:
Grant Birkinbine 2021-03-19 08:02:29 -07:00
parent b1cf5cbc50
commit 0a56132453
No known key found for this signature in database
GPG Key ID: B0409256808CFF4A
3 changed files with 1 additions and 14 deletions

View File

@ -1,7 +0,0 @@
make build:
echo "[#] Killing old docker processes"
docker-compose rm -fs
echo "[#] Building docker containers"
docker-compose up --build -d

View File

@ -37,11 +37,7 @@ The compose file defines an application with two services `nginx-proxy` and `fla
When deploying the application, docker-compose maps port 80 of the web service container to port 80 of the host as specified in the file.
Make sure port 80 on the host is not being used by another container, otherwise the port should be changed.
## Build with Makefile (easy)
Simply run `make build` to create the NGINX and Flask containers with `docker-compose`. You may also follow the steps below to use `docker-compose` natively.
## Deploy with docker-compose (still easy)
## Deploy with docker-compose
```bash
$ docker-compose up -d

View File

@ -9,8 +9,6 @@ services:
- FLASK_SERVER_ADDR=flask-app:8000
ports:
- "80:80"
links:
- flask-app
depends_on:
- flask-app
healthcheck: