Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker scripts and nginx conf #542

Merged
merged 1 commit into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
9 changes: 2 additions & 7 deletions backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@

## Docker

> [!IMPORTANT]
> Due to Docker context limitations, you can't build an image in this directory

1. Make sure you're at the root of the project
2. Run the following Docker command to build container:

```shell
docker build -f backend/Dockerfile -t fba_backend_independent .
docker build -f Dockerfile -t fba_backend_independent .
```

3. Start container
Expand Down Expand Up @@ -39,9 +36,7 @@

cd fastapi_best_architecture/backend

uv venv

uv pip install -r requirements.txt
uv sync --frozen
```

3. Checkout a new branch and make your changes
Expand Down
4 changes: 2 additions & 2 deletions deploy/backend/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ server {
}

location /static {
alias /www/fba_server/backend/static;
alias /var/www/fba_server/backend/static;
}

location /static/upload {
alias /www/fba_server/backend/static/upload;
alias /var/www/fba_server/backend/static/upload;
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
services:
fba_server:
build:
context: ../../../
dockerfile: backend/Dockerfile
context: .
dockerfile: Dockerfile
image: fba_server:latest
container_name: fba_server
restart: always
Expand All @@ -11,7 +11,7 @@ services:
- fba_redis
- fba_celery
volumes:
- .env.server:/fba/backend/.env
- ./deploy/backend/docker-compose/.env.server:/fba/backend/.env
- fba_static:/fba/backend/app/static
networks:
- fba_network
Expand Down Expand Up @@ -80,7 +80,7 @@ services:
depends_on:
- fba_server
volumes:
- ../nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ./deploy/backend/nginx.conf:/etc/nginx/conf.d/default.conf:ro
- fba_static:/www/fba_server/backend/static
- fba_static_upload:/www/fba_server/backend/static/upload
networks:
Expand Down Expand Up @@ -127,8 +127,8 @@ services:

fba_celery:
build:
context: ../../../
dockerfile: backend/Dockerfile
context: .
dockerfile: Dockerfile
args:
- SERVER_TYPE=celery
image: fba_celery:latest
Expand Down