By demonlamagra
I’m looking to run 2 flask containers and 1 Nginx container using one docker compose file but keep getting 404 errors.
Tried following a number of tutorials but still no luck.
Below is my docker compose file along with Nginx.conf and Uwsgi config.
docker-compose:
version: "3.7"
services:
flask:
build: ./flask
container_name: flask
restart: always
image: flask
environment:
- APP_NAME=flask
expose:
- 8080
ports:
- "8080:8080"
flask2:
build: ./flask2
container_name: flask2
restart: always
image: flask2
environment:
- APP_NAME=flask2
expose:
- 8081
ports:
- "8081:8081"
nginx:
build: ./nginx
image: nginx
container_name: nginx
restart: always
ports:
- "80:80"
- "81:81"
depends_on:
- flask
- flask2
nginx.conf
upstream flask_app1 {
server flask:8080;
}
upstream flask_app2 {
server flask2:8081;
}
server {
listen 80;
location /test1 {
uwsgi_pass flask_app1;
}
location /test2 {
uwsgi_pass flask_app2;
}
}
uwsgi: Both identical except port.
[uwsgi]
wsgi-file = run.py
callable = app
socket = :8081
processes = 4
threads = 2
master = true
chmod-socket = 660
buffer-size = 32768
vacuum = true
die-on-term = true
I’m using docker for windows and I can see in the GUI that the 2 flask apps have ports binded at 8080 and 8081 and nginx being binded to port 80.
Not sure what the else the issue could be. Any help would be fantastic.
Thanks in advance.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi there,
I’m having exaclty the same issue, went through many tutorials, but didn’t manage to have this configuration running.
Any help would be welcome.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.