19 lines
469 B
YAML
19 lines
469 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
env_file: .env
|
|
restart: always
|
|
volumes:
|
|
- ./pgdata:/var/lib/postgresql/data
|
|
linkwarden:
|
|
env_file: .env
|
|
environment:
|
|
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
|
|
restart: unless-stopped
|
|
image: ghcr.io/linkwarden/linkwarden:latest
|
|
ports:
|
|
- 127.0.0.1:3012:3000
|
|
volumes:
|
|
- ./data:/data/data
|
|
depends_on:
|
|
- postgres |