Skip to content
Discussion options

You must be logged in to vote

Yes, we are open to accept any PR, for many people who don't know, it is feasible and advisable to separate a docker compose and structure it in applications.

services:
  app:
    image: dokploy/dokploy:latest
    ports:
      - 3000
 backend:
    image: dokploy/backend:latest
    ports:
      - 3000

this easily becomes:

2 Applications

1 for the app and the other for the backend, what is the difference? In docker compose we can handle many applications in a single file, while applications are treated as a single entity and not multiple, so we need to separate them.

you can use this template for cockroachdb

version: '3.8'

services:
  cockroach:
    image: cockroachdb/cockroach:v23.2.0
    c…

Replies: 3 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@SlavenIvanov
Comment options

Answer selected by SlavenIvanov
Comment options

You must be logged in to vote
1 reply
@SlavenIvanov
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants