mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
feat: add docker-compose
This commit is contained in:
27
docker-compose.yml
Executable file
27
docker-compose.yml
Executable file
@@ -0,0 +1,27 @@
|
|||||||
|
services:
|
||||||
|
postgres:
|
||||||
|
image: postgres:latest
|
||||||
|
container_name: "dokploy-postgres"
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: dokploy
|
||||||
|
POSTGRES_USER: dokploy
|
||||||
|
POSTGRES_PASSWORD: amukds4wi9001583845717ad2
|
||||||
|
volumes:
|
||||||
|
- ./.docker/postgres_data:/var/lib/postgresql/data
|
||||||
|
ports:
|
||||||
|
- "5432:5432"
|
||||||
|
networks:
|
||||||
|
- "dokploy-network"
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis:latest
|
||||||
|
ports:
|
||||||
|
- "6379:6379"
|
||||||
|
volumes:
|
||||||
|
- ./.docker/redis_data:/data
|
||||||
|
networks:
|
||||||
|
- "dokploy-network"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
dokploy-network:
|
||||||
|
driver: "bridge"
|
||||||
Reference in New Issue
Block a user