Ajouter docker-compose/adventurelog/docker-compose.yml

This commit is contained in:
toma 2026-01-31 23:02:03 +01:00
parent ad412eb860
commit e047e85476

View File

@ -0,0 +1,32 @@
services:
web:
#build: ./frontend/
image: ghcr.io/seanmorley15/adventurelog-frontend:latest
container_name: adventurelog-frontend
restart: unless-stopped
env_file: .env
ports:
- 8015:3000
depends_on:
- server
db:
image: postgis/postgis:16-3.5
container_name: adventurelog-db
restart: unless-stopped
env_file: .env
volumes:
- /opt/adventurelog/postgresql/data:/var/lib/postgresql/data/
server:
#build: ./backend/
image: ghcr.io/seanmorley15/adventurelog-backend:latest
container_name: adventurelog-backend
restart: unless-stopped
env_file: .env
ports:
- 8017:80
depends_on:
- db
volumes:
- /opt/adventurelog/media:/code/media/