diff --git a/compose.yaml b/compose.yaml index bcc243f..461df46 100644 --- a/compose.yaml +++ b/compose.yaml @@ -10,8 +10,8 @@ services: image: vaultwarden/server:latest container_name: vaultwarden restart: always - ports: - - 80:80 + expose: + - 80 environment: DOMAIN: "https://vault.sascha-lutz.de" # Your domain; vaultwarden needs to know it's https to work properly with attachments SIGNUPS_ALLOWED: "false" @@ -27,8 +27,8 @@ services: image: ghcr.io/gethomepage/homepage:latest container_name: homepage restart: always - ports: - - 3000:3000 + expose: + - 3000 volumes: - /app-config/homepage/:/app/config # Make sure your local config directory exists - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods