23 lines
519 B
YAML
23 lines
519 B
YAML
services:
|
|
db:
|
|
image: postgres:16
|
|
restart: unless-stopped
|
|
env_file:
|
|
- db.env
|
|
volumes:
|
|
- ./db_data:/var/lib/postgresql/data
|
|
|
|
xwiki:
|
|
image: xwiki:lts-postgres-tomcat
|
|
restart: unless-stopped
|
|
env_file:
|
|
- xwiki.env
|
|
ports:
|
|
- 8082:8080
|
|
depends_on:
|
|
- db
|
|
volumes:
|
|
- ./xwiki_data:/usr/local/xwiki
|
|
- ./xwiki_data/xwiki.cfg:/usr/lib/xwiki/WEB-INF/xwiki.cfg:rw
|
|
- ./xwiki.properties:/usr/local/tomcat/webapps/ROOT/WEB-INF/xwiki.properties:rw
|