Update .env.example with additional optional configurations and change docker-compose to use development images for frontend and backend services

This commit is contained in:
Sean Morley
2025-05-26 17:07:52 -04:00
parent 40f54529a4
commit 4fb25f63fd
2 changed files with 26 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
services:
web:
image: ghcr.io/seanmorley15/adventurelog-frontend:latest
image: ghcr.io/seanmorley15/adventurelog-frontend:development
container_name: adventurelog-frontend
restart: unless-stopped
env_file: .env
@@ -18,7 +18,7 @@ services:
- postgres_data:/var/lib/postgresql/data/
server:
image: ghcr.io/seanmorley15/adventurelog-backend:latest
image: ghcr.io/seanmorley15/adventurelog-backend:development
container_name: adventurelog-backend
restart: unless-stopped
env_file: .env