-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor user serializers, update Docker configurations, and remove u…
…nused Nginx files
- Loading branch information
1 parent
84566b8
commit 50dc042
Showing
5 changed files
with
21 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
services: | ||
web: | ||
#build: ./frontend/ | ||
image: ghcr.io/seanmorley15/adventurelog-frontend:latest | ||
build: ./frontend/ | ||
#image: ghcr.io/seanmorley15/adventurelog-frontend:latest | ||
container_name: adventurelog-frontend | ||
restart: unless-stopped | ||
environment: | ||
|
@@ -14,7 +14,7 @@ services: | |
- server | ||
|
||
db: | ||
image: postgis/postgis:15-3.3 | ||
image: postgis/postgis:16-3.4 | ||
container_name: adventurelog-db | ||
restart: unless-stopped | ||
environment: | ||
|
@@ -25,8 +25,8 @@ services: | |
- postgres_data:/var/lib/postgresql/data/ | ||
|
||
server: | ||
#build: ./backend/ | ||
image: ghcr.io/seanmorley15/adventurelog-backend:latest | ||
build: ./backend/ | ||
#image: ghcr.io/seanmorley15/adventurelog-backend:latest | ||
container_name: adventurelog-backend | ||
restart: unless-stopped | ||
environment: | ||
|
@@ -39,7 +39,7 @@ services: | |
- DJANGO_ADMIN_PASSWORD=admin | ||
- [email protected] | ||
- PUBLIC_URL='http://localhost:8016' # Match the outward port, used for the creation of image urls | ||
- CSRF_TRUSTED_ORIGINS=http://localhost:8016 # Comma separated list of trusted origins for CSRF | ||
- CSRF_TRUSTED_ORIGINS=http://localhost:8016,http://localhost:8015 # Comma separated list of trusted origins for CSRF | ||
- DEBUG=False | ||
- FRONTEND_URL='http://localhost:8015' # Used for email generation. This should be the url of the frontend | ||
ports: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.