Skip to content

Instantly share code, notes, and snippets.

@dnburgess
Last active February 23, 2024 22:05
Show Gist options
  • Save dnburgess/bfb7a54b63f0bdf139bdba50d787349c to your computer and use it in GitHub Desktop.
Save dnburgess/bfb7a54b63f0bdf139bdba50d787349c to your computer and use it in GitHub Desktop.
DB Tech OpenProject Docker Stack
---
version: '2'
services:
openproject:
image: openproject/community:11
container_name: openproject
ports:
- 7070:80
environment:
- PUID=998
- PGID=100
- SECRET_KEY_BASE=koZirTof1faEzGv7vGyKugOq6RnpislI
volumes:
- /srv/dev-disk-by-label-Files/Config/OpenProject/Config:/var/openproject/pgdata
- /srv/dev-disk-by-label-Files/Config/OpenProject/Assets:/var/openproject/assets
restart: unless-stopped
# use this command in a linux ssh to generate a secret for the environmental variable:
# head /dev/urandom | tr -dc A-Za-z0-9 | head -c 32 ; echo ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment