- Replace all AdventureLog references with Voyage across ~102 files (7 case variants: AdventureLog, adventurelog, Adventurelog, ADVENTURELOG, AdventUrelog, AdventureLOG, adventure-log, adventure_log) - Rename brand, static, and documentation assets to use voyage naming - Rename install_adventurelog.sh → install_voyage.sh - Update README.md and voyage_overview.md to credit AdventureLog as the upstream project and Sean Morley as its original creator
37 lines
771 B
YAML
37 lines
771 B
YAML
services:
|
|
web:
|
|
#build: ./frontend/
|
|
image: ghcr.io/seanmorley15/voyage-frontend:latest
|
|
container_name: voyage-frontend
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "${FRONTEND_PORT:-8015}:3000"
|
|
depends_on:
|
|
- server
|
|
|
|
db:
|
|
image: postgis/postgis:16-3.5
|
|
container_name: voyage-db
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data/
|
|
|
|
server:
|
|
#build: ./backend/
|
|
image: ghcr.io/seanmorley15/voyage-backend:latest
|
|
container_name: voyage-backend
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "${BACKEND_PORT:-8016}:80"
|
|
depends_on:
|
|
- db
|
|
volumes:
|
|
- voyage_media:/code/media/
|
|
|
|
volumes:
|
|
postgres_data:
|
|
voyage_media:
|