WIP
This commit is contained in:
parent
689ffca95c
commit
a9876bf5b5
9 changed files with 17 additions and 17 deletions
|
|
@ -20,8 +20,8 @@ services:
|
|||
AUTHENTIK_POSTGRESQL__USER: authentik_user
|
||||
AUTHENTIK_POSTGRESQL__PASSWORD: ${AUTHENTIK_DB_PASSWORD}
|
||||
ports:
|
||||
- 9000: 9000
|
||||
- 9443: 9443
|
||||
- "9000:9000"
|
||||
- "9443:9443"
|
||||
volumes:
|
||||
- authentik_media:/media
|
||||
- authentik_templates:/templates
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ services:
|
|||
FORGEJO__database__PASSWD: ${FORGEJO_DB_PASSWORD}
|
||||
FORGEJO__server__HTTP_PORT: 3000
|
||||
ports:
|
||||
- 3000:3000
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- forgejo_data:/data
|
||||
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ services:
|
|||
database__connection__database: ghost1_db
|
||||
url: ${GHOST1_URL:-http://localhost:2368}
|
||||
ports:
|
||||
- 2368: 2368
|
||||
- "2368:2368"
|
||||
volumes:
|
||||
- ghost1_data:/var/lib/ghost/content
|
||||
|
||||
|
|
@ -35,7 +35,7 @@ services:
|
|||
url: ${GHOST2_URL:-http://localhost:2369}
|
||||
server__port: 2369
|
||||
ports:
|
||||
- 2368: 2369
|
||||
- "2368:2369"
|
||||
volumes:
|
||||
- ghost2_data:/var/lib/ghost/content
|
||||
|
||||
|
|
@ -51,7 +51,7 @@ services:
|
|||
url: ${GHOST3_URL:-http://localhost:2370}
|
||||
server__port: 2370
|
||||
ports:
|
||||
- 2370: 2370
|
||||
- "2370:2370"
|
||||
volumes:
|
||||
- ghost3_data:/var/lib/ghost/content
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ services:
|
|||
environment:
|
||||
MYSQL_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD}
|
||||
ports:
|
||||
- 3306: 3306
|
||||
- "3306:3306"
|
||||
volumes:
|
||||
- mariadb_data:/var/lib/mysql
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ services:
|
|||
DB_POSTGRESDB_USER: n8n_user
|
||||
DB_POSTGRESDB_PASSWORD: ${N8N_DB_PASSWORD}
|
||||
ports:
|
||||
- 5678: 5678
|
||||
- "5678:5678"
|
||||
volumes:
|
||||
- n8n_data:/home/node/.n8n
|
||||
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@ services:
|
|||
command:
|
||||
- -c=/etc/nats/nats.conf
|
||||
ports:
|
||||
- 4222: 4222
|
||||
- 8080: 8080
|
||||
- 8222: 8223
|
||||
- "4222:4222"
|
||||
- "8080:8080"
|
||||
- "8222:8223"
|
||||
volumes:
|
||||
- nats_data:/data
|
||||
configs:
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ services:
|
|||
image: snikket/snikket-server:latest
|
||||
command: web
|
||||
ports:
|
||||
- 80: 80
|
||||
- "80:80"
|
||||
volumes:
|
||||
- snikket_data:/snikket
|
||||
|
||||
|
|
@ -25,9 +25,9 @@ services:
|
|||
image: snikket/snikket-server:latest
|
||||
command: server
|
||||
ports:
|
||||
- 5222: 5222
|
||||
- 5269: 5269
|
||||
- 5000: 5000
|
||||
- "5222:5222"
|
||||
- "5269:5269"
|
||||
- "5000:5000"
|
||||
volumes:
|
||||
- snikket_data:/snikket
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ services:
|
|||
synapse:
|
||||
image: matrixdotorg/synapse:latest
|
||||
environment:
|
||||
SYNAPSE_SERVER_NAME: pve-social
|
||||
SYNAPSE_SERVER_NAME: "matrix.the-fulfillment.org"
|
||||
SYNAPSE_REPORT_STATS: "no"
|
||||
ports:
|
||||
- 8008: 8008
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ services:
|
|||
ROCKET_PORT: 8222
|
||||
ADMIN_TOKEN: ${VAULT_ADMIN_TOKEN}
|
||||
ports:
|
||||
- 8222: 8222
|
||||
- "8222:8222"
|
||||
volumes:
|
||||
- vaultwarden_data:/data
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue