Skip to content

Commit

Permalink
Update openproject
Browse files Browse the repository at this point in the history
  • Loading branch information
websoft9 committed Mar 9, 2025
1 parent 397b3b4 commit 17c4eb2
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 166 deletions.
58 changes: 16 additions & 42 deletions apps/openproject/.env
Original file line number Diff line number Diff line change
@@ -1,53 +1,27 @@
W9_REPO="wordpress"
W9_DIST=community
W9_VERSION="latest"
W9_REPO="openproject/openproject"
W9_DIST='community'
W9_VERSION='15'
W9_POWER_PASSWORD='TwozwpTpNs0b#HFE'

W9_POWER_PASSWORD="1PrMxExC45LsCT"

# Environments which for user settings when create application
# Named expression: W9_xxx_xxx_SET, xxx refer to file fields
W9_HTTP_PORT_SET=9001
# W9_HTTPS_PORT_SET=9002
# W9_DB_PORT_SET=3306
# W9_SSH_PORT_SET=23
W9_KEY_SET="dfsjdkjf77xjxcjcj"

#### -- Not allowed to edit below environments when recreate app based on existing data -- ####

W9_ID=openproject

# W9_HTTP_PORT or W9_HTTPS_PORT is need at leaset and used for proxy for web application
# Some container (e.g teleport) need HTTPS access, then need to set this pra
W9_HTTP_PORT=80
W9_HTTPS_PORT=81

W9_LOGIN_USER=admin
# use https://1password.com/zh-cn/password-generator/ to genarate 14 bit password
# this password can also use password file
W9_LOGIN_PASSWORD=$W9_POWER_PASSWORD
W9_ADMIN_PATH="/wp-login"
W9_HTTP_PORT_SET='9001'

# Container name's suffix must use one of the value
W9_DB_EXPOSE="mysql,postgresql,mariadb,mongodb,redis"
W9_KEY_SET='dfsjdkjf77xjxcjcj'
W9_ID='openproject'

# It is used when the application APP needs to set an external URL, which can be IP(or domain), IP:PORT
# If have protocols, should be set it in the APP's ENV
W9_URL=internet_ip:$W9_HTTP_PORT_SET
# modifies W9_URL on init when it is true
# This credential can not set by ENV
W9_LOGIN_USER=admin
W9_LOGIN_PASSWORD=admin
W9_URL='internet_ip:$W9_HTTP_PORT_SET'
W9_URL_REPLACE=true

W9_NETWORK=websoft9

#### ----------------------------------------------------------------------------------------- ####


# Below environment is created by this app

WORDPRESS_DB_HOST=$W9_ID-mariadb
WORDPRESS_DB_USER=wordpress #if use postgresql, it need set to postgres
WORDPRESS_DB_PASSWORD=$W9_POWER_PASSWORD
WORDPRESS_DB_NAME=wordpress

# Below environment is created by this app: https://www.openproject.org/docs/installation-and-operations/configuration/environment/

#W9_NAME=""
#W9_RCODE=""
OPENPROJECT_SECRET_KEY_BASE=$W9_POWER_PASSWORD
OPENPROJECT_HOST__NAME=$W9_URL
OPENPROJECT_HTTPS=false
OPENPROJECT_DEFAULT__LANGUAGE=en
21 changes: 0 additions & 21 deletions apps/openproject/Dockerfile

This file was deleted.

10 changes: 9 additions & 1 deletion apps/openproject/Notes.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# Appname
# OpenProject

- This repoistory use all-in-one image for deployment.
- default language is en, and user can change languages at console

#### How to change to custom db?

Refer to offcial docs [Configuring a custom database server](https://www.openproject.org/docs/installation-and-operations/configuration/database/)

## FAQ
43 changes: 9 additions & 34 deletions apps/openproject/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,48 +1,23 @@
# image,docs: https://hub.docker.com/_/wordpress/
# Use all-ine-one image
# image,docs: https://www.openproject.org/docs/installation-and-operations/installation/docker/

services:

wordpress:
openproject:
image: $W9_REPO:$W9_VERSION
container_name: $W9_ID
restart: unless-stopped
#This is for access host from container
# extra_hosts: ["host.docker.internal:host-gateway"]
# command: |
# /bin/bash -c "ping -c 3 host.docker.internal"
logging:
driver: "json-file"
options:
max-file: "5"
max-size: 10m
deploy:
resources:
limits:
memory: 5g
cpus: '0.7'
ports:
- $W9_HTTP_PORT_SET:80
env_file: .env
env_file:
- .env
volumes:
- wordpress:/var/www/html
- ./src/php_exra.ini:/usr/local/etc/php/conf.d/php_exra.ini

mariadb:
image: mariadb:10.4
container_name: $W9_ID-mariadb
restart: unless-stopped
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --innodb_log_buffer_size=30M
volumes:
- mysql_data:/var/lib/mysql
environment:
MYSQL_DATABASE: $WORDPRESS_DB_NAME
MYSQL_USER: $WORDPRESS_DB_USER
MYSQL_PASSWORD: $W9_POWER_PASSWORD
MYSQL_ROOT_PASSWORD: $W9_POWER_PASSWORD
- pgdata:/var/openproject/pgdata
- assets:/var/openproject/assets

volumes:
wordpress:
mysql_data:
assets:
pgdata:

networks:
default:
Expand Down
57 changes: 0 additions & 57 deletions apps/openproject/src/nginx-proxy.conf.template

This file was deleted.

8 changes: 0 additions & 8 deletions apps/openproject/src/php_exra.ini

This file was deleted.

6 changes: 3 additions & 3 deletions apps/openproject/variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
}
],
"requirements": {
"cpu": "2",
"memory": "4",
"disk": "10",
"cpu": "1",
"memory": "2",
"disk": "2",
"url": "https://www.openproject.org"
}
}

0 comments on commit 17c4eb2

Please sign in to comment.