You might try the versions:next build instead of feature:docker -- I wasn't 
getting the static files to work properly until yesterday's build.

On Friday, May 25, 2018 at 4:36:11 PM UTC-5, Junior Vidotti wrote:
>
> Items are misplaced when configuring a 3.0 installation using Docker 
> Compose (see attached picture).
>
> What am I doing wrong?
>
> Thanks in advance,
>
> Junior Vidotti
>
> ------------------------------
> Docker-Compose for 3.0:
>
> version: "3.4"
>
> services:
>   mayan-edms-2: 
>     container_name: mayan-edms-app-2
>     image: registry.gitlab.com/mayan-edms/mayan-edms:feature-docker
>     depends_on:
>       - "db2"
>     environment:
>       MAYAN_DATABASE_ENGINE: django.db.backends.postgresql
>       MAYAN_DATABASE_HOST: db2
>       MAYAN_DATABASE_NAME: mayan
>       MAYAN_DATABASE_PASSWORD: mypass
>       MAYAN_DATABASE_USER: mayan
>     ports: 
>       - "8000:8000"
>     volumes:
>       - app:/var/lib/mayan
>     networks:
>       - mayan-2
>
>   db2:
>     image: healthcheck/postgres
>     container_name: mayan-edms-db-2
>     environment:
>       POSTGRES_DB: mayan
>       POSTGRES_PASSWORD: mypass
>       POSTGRES_USER: mayan
>     volumes:
>       - db:/var/lib/postgresql/data
>     networks:
>       - mayan-2
>
> volumes:
>   db:
>     name: mayan-db-2
>   app:
>     name: mayan-data-2
>
> networks:
>   mayan-2:
>
> ------------------------------
> Docker-Compose for 2.7.3:
>
> version: "3.4"
>
> services:
>   mayan-edms: 
>     container_name: mayan-edms-app
>     image: mayanedms/mayanedms:2.7.3
>     #image: registry.gitlab.com/mayan-edms/mayan-edms:feature-docker
>     depends_on:
>       - "db"
>     environment:
>       MAYAN_DATABASE_ENGINE: django.db.backends.postgresql
>       MAYAN_DATABASE_HOST: db
>       MAYAN_DATABASE_NAME: mayan
>       MAYAN_DATABASE_PASSWORD: q9tj96crx9
>       MAYAN_DATABASE_USER: mayan
>     ports: 
>       - "80:80"
>     volumes:
>       - app:/var/lib/mayan
>     networks:
>       - mayan
>
>   db:
>     image: healthcheck/postgres
>     container_name: mayan-edms-db
>     environment:
>       POSTGRES_DB: mayan
>       POSTGRES_PASSWORD: q9tj96crx9
>       POSTGRES_USER: mayan
>     volumes:
>       - db:/var/lib/postgresql/data
>     networks:
>       - mayan
>
> volumes:
>   db:
>     name: mayan-db
>   app:
>     name: mayan-data
>
> networks:
>   mayan:
>
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"Mayan EDMS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to