feat: init commit for xwiki state
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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
|
||||
Reference in New Issue
Block a user