Replace all seanmorley15/Voyage repo URLs, ghcr.io/seanmorley15 container image references, seanmorley.com/sponsor and buymeacoffee links with the new repo (github.com/Alex-Wiesner/voyage) and new GHCR images (ghcr.io/alex-wiesner/voyage-*). Attribution to original AdventureLog author Sean Morley is preserved.
37 lines
771 B
YAML
37 lines
771 B
YAML
services:
|
|
web:
|
|
#build: ./frontend/
|
|
image: ghcr.io/alex-wiesner/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/alex-wiesner/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:
|