OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/docs/installation-and-operations/configuration/server/docker-compose.yml

22 lines
496 B

version: '3'
services:
database:
image: postgres:10
environment:
- POSTGRES_PASSWORD=p4ssw0rd
- POSTGRES_DB=openproject
nginx:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
ports:
- "8080:80"
web: &openproject
environment:
- DATABASE_URL=postgres://postgres:p4ssw0rd@database/openproject
image: openproject/community:10
command: ./docker/web
worker:
<<: *openproject
command: ./docker/worker