first commit
This commit is contained in:
commit
e53559e64a
1 changed files with 47 additions and 0 deletions
47
compose.yaml
Normal file
47
compose.yaml
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
networks:
|
||||||
|
proxy_network:
|
||||||
|
name: proxy_network
|
||||||
|
|
||||||
|
services:
|
||||||
|
caddy:
|
||||||
|
image: caddy
|
||||||
|
container_name: caddy
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
- 443:443
|
||||||
|
- 2019:2019
|
||||||
|
volumes:
|
||||||
|
- /app-config/caddy/data:/data
|
||||||
|
- /app-config/caddy/config:/config
|
||||||
|
- /app-config/caddy/logs:/var/log/caddy/
|
||||||
|
- /app-config/caddy/Caddyfile:/etc/caddy/Caddyfile
|
||||||
|
networks:
|
||||||
|
- proxy_network
|
||||||
|
|
||||||
|
crowdsec:
|
||||||
|
image: crowdsecurity/crowdsec
|
||||||
|
container_name: crowdsec
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
COLLECTIONS: "crowdsecurity/caddy"
|
||||||
|
volumes:
|
||||||
|
#- /app-config/crowdsec/acquis.yaml:/etc/crowdsec/acquis.yaml
|
||||||
|
- /app-config/caddy/logs:/var/log/caddy/
|
||||||
|
- /app-config/crowdsec/crowdsec-db:/var/lib/crowdsec/data/
|
||||||
|
- /app-config/crowdsec/crowdsec-config:/etc/crowdsec/
|
||||||
|
|
||||||
|
vaultwarden:
|
||||||
|
image: vaultwarden/server:latest
|
||||||
|
container_name: vaultwarden
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
DOMAIN: "https://vault.sascha-lutz.de" # Your domain; vaultwarden needs to know it's https to work properly with attachments
|
||||||
|
SIGNUPS_ALLOWED: "false"
|
||||||
|
INVITATIONS_ALLOWED: "false"
|
||||||
|
LOG_FILE: "/var/log/vaultwarden.log"
|
||||||
|
ADMIN_TOKEN: "PCcYIigLuigPUADoW5lXESIbVZEvjplpFXmAj0UZ505Th1ta0LWmPc8lAyAXUIp3"
|
||||||
|
volumes:
|
||||||
|
- /app-config/vw-data:/data
|
||||||
|
networks:
|
||||||
|
- proxy_network
|
||||||
Loading…
Add table
Add a link
Reference in a new issue