Top Menu

Jump to content
Home
    Modules
      • Projects
      • Activity
      • Work packages
      • Gantt charts
      • Calendars
      • Team planners
      • Boards
      • News
    • Getting started
    • Introduction video
      Welcome to OpenProject Community
      Get a quick overview of project management and team collaboration with OpenProject. You can restart this video from the help menu.

    • Help and support
    • Upgrade to Enterprise edition
    • User guides
    • Videos
    • Shortcuts
    • Community forum
    • Enterprise support

    • Additional resources
    • Data privacy and security policy
    • Digital accessibility (DE)
    • OpenProject website
    • Security alerts / Newsletter
    • OpenProject blog
    • Release notes
    • Report a bug
    • Development roadmap
    • Add and edit translations
    • API documentation
  • Sign in
      Forgot your password?

      or sign in with your existing account

      Google

Side Menu

  • Overview
  • Activity
    Activity
  • Roadmap
  • Work packages
    Work packages
  • Gantt charts
    Gantt charts
  • Calendars
    Calendars
  • Team planners
    Team planners
  • Boards
    Boards
  • News
  • Forums

Content

Support Installation & Updates
  1. OpenProject
  2. Forums
  3. Support Installation & Updates
  4. Docker-Compose | is my .yml ok?

Docker-Compose | is my .yml ok?

Added by Werner K about 5 years ago

hey, 

Im not an expert in docker or Openproject, so i want to ask if it is ok to use the following .yml in production. Are there some security issues if i use it this simple way?

(It´s behind an NGINX reverse proxy + Letsencrypt companion)

thx!

version: '3'

services:

  openprojecttest:
    image: openproject/community:10
    container_name: openprojecttest
    volumes:
      - ./pgdata:/var/openproject/pgdata
      - ./static:/var/openproject/assets
    environment:
      - VIRTUAL_HOST=test.****.**
      - LETSENCRYPT_HOST=test.****.**
      - LETSENCRYPT_EMAIL=***@***.**
    restart: unless-stopped

networks:
  default:
    external:
      name: proxy_and_letsencrypt_webproxy


Loading...