Build + offer docker image and docker-compose.yml file for easier self-hosting

Tweak login and auth for IP-based setups and setups without email enabled.
This commit is contained in:
Bruno Bernardino
2024-04-09 13:22:05 +01:00
parent 5a85dd224e
commit 735b14544a
8 changed files with 119 additions and 13 deletions

View File

@@ -1,4 +1,14 @@
services:
website:
build: ghcr.io/bewcloud/bewcloud
restart: always
ports:
- 127.0.0.1:8000:8000
mem_limit: '256m'
user: "${UID}:${GID}" # if you run into issues with permissions for the data-files volume below, see other options at https://stackoverflow.com/a/56904335
volumes:
- ./data-files:/app/data-files
postgresql:
image: postgres:15
environment:
@@ -7,14 +17,15 @@ services:
- POSTGRES_DB=bewcloud
restart: on-failure
volumes:
- pgdata:/var/lib/postgresql/data
- bewcloud-db:/var/lib/postgresql/data
ports:
- 5432:5432
- 127.0.0.1:5432:5432
ulimits:
memlock:
soft: -1
hard: -1
mem_limit: '256m'
volumes:
pgdata:
bewcloud-db:
driver: local