简体   繁体   中英

Is a docker image available for DocDokuPLM?

Does anyone know of a demo site, docker image, or some other way to quickly try out DocDokuPLM?

Also, does anyone know if the project is alive?

You can try this one. https://github.com/docdoku/docdoku-plm-docker

I deployed a system with this docker-compose.

There is a persistence problem that requires some changes to the db-volume configuration.

  db:
    image: postgres:13.1-alpine
    env_file: ./env/db.env
    volumes:
      - db-volume:/var/lib/postgresql/data/
    networks:
      - network

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM