Skip to content

Commit

Permalink
🔥 hot fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jiisanda committed Dec 30, 2023
1 parent c872877 commit a063c51
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ downloads
app/migrations
README.md
docker-compose.yml
.env
app/.env
*.log
*.pyc
__pychache__
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ celerybeat.pid
*.sage.py

# Environments
.env
app/.env
.venv
env/
venv/
Expand Down
2 changes: 1 addition & 1 deletion app/docs/commands/docker.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker Commands

Download the image from [dockehub](https://hub.docker.com/r/jiisanda/docflow).
Download the image from [DockerHub](https://hub.docker.com/r/jiisanda/docflow).

OR

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ services:
ports:
- "80:80"
volumes:
- ./nginx:/etc/nginx/conf.dAnd
- ./nginx:/etc/nginx/conf.d
7 changes: 2 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ services:
- postgres
ports:
- "8000:8000"
env_file: ./.env
env_file: app/.env
postgres:
image: postgres
env_file: ./.env
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
env_file: app/.env
volumes:
- postgres-db:/var/lib/postgresql/data

Expand Down

0 comments on commit a063c51

Please sign in to comment.