D
Dokploy7mo ago
aliuq

Is there a version requirement for docker?

I want to deploy the dokploy instance on a NAS. Currently docker version is 20.10.23
4 Replies
Siumauricio
Siumauricio7mo ago
We currently use the version 27.x.x, I'm not sure if you will have trouble
aliuq
aliuqOP7mo ago
I tried, and TRAEFIK_SSL_PORT does not work. Excuse me, is the TRAEFIK_SSL_PORT loop variable from the host or the dokploy container?
docker service create \
--name dokploy \
--replicas 1 \
--network dokploy-network \
--mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock \
--mount type=bind,source=/etc/dokploy,target=/etc/dokploy \
--mount type=volume,source=dokploy-docker-config,target=/root/.docker \
--publish published=3000,target=3000,mode=host \
--update-parallelism 1 \
--update-order stop-first \
-e PORT="3000" \
-e TRAEFIK_SSL_PORT="8443" \
-e TRAEFIK_PORT="8000" \
--constraint 'node.role == manager' \
dokploy/dokploy:latest
docker service create \
--name dokploy \
--replicas 1 \
--network dokploy-network \
--mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock \
--mount type=bind,source=/etc/dokploy,target=/etc/dokploy \
--mount type=volume,source=dokploy-docker-config,target=/root/.docker \
--publish published=3000,target=3000,mode=host \
--update-parallelism 1 \
--update-order stop-first \
-e PORT="3000" \
-e TRAEFIK_SSL_PORT="8443" \
-e TRAEFIK_PORT="8000" \
--constraint 'node.role == manager' \
dokploy/dokploy:latest
No description
aliuq
aliuqOP7mo ago
Another problem is that it keeps generating new containers.
No description
aliuq
aliuqOP7mo ago
Docker version causes the problem, works fine on the '24.0.2' version

Did you find this page helpful?