backend added
This commit is contained in:
parent
763776c29b
commit
f36f28a057
1 changed files with 38 additions and 42 deletions
|
|
@ -62,8 +62,6 @@ services:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpus: "0.5"
|
cpus: "0.5"
|
||||||
# sysctls:
|
|
||||||
# vm.overcommit_memory: "1"
|
|
||||||
|
|
||||||
keydb:
|
keydb:
|
||||||
image: eqalpha/keydb:latest
|
image: eqalpha/keydb:latest
|
||||||
|
|
@ -83,47 +81,45 @@ services:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpus: "0.5"
|
cpus: "0.5"
|
||||||
# sysctls:
|
|
||||||
# vm.overcommit_memory: "1"
|
|
||||||
|
|
||||||
# backend:
|
backend:
|
||||||
# build:
|
build:
|
||||||
# context: ./apps/backend
|
context: ./apps/backend
|
||||||
# dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
# networks:
|
networks:
|
||||||
# - dokploy-network
|
- dokploy-network
|
||||||
# expose:
|
expose:
|
||||||
# - 1323
|
- 1323
|
||||||
# restart: unless-stopped
|
restart: unless-stopped
|
||||||
# volumes:
|
volumes:
|
||||||
# - images_volume:/app/images
|
- images_volume:/app/images
|
||||||
# - storage_volume:/app/storage
|
- storage_volume:/app/storage
|
||||||
# environment:
|
environment:
|
||||||
# STORAGE_STRATEGY: "minio"
|
STORAGE_STRATEGY: "s3"
|
||||||
# MINIO_URL: minio:9000
|
MINIO_URL: minio:9000
|
||||||
# MINIO_ROOT_USER: ${MINIO_ROOT_USER}
|
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
|
||||||
# MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
|
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
|
||||||
# POSTGRES_USER: ${POSTGRES_USER}
|
POSTGRES_USER: ${POSTGRES_USER}
|
||||||
# POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
# POSTGRES_DB: ${POSTGRES_DB}
|
POSTGRES_DB: ${POSTGRES_DB}
|
||||||
# PGHOST: db
|
PGHOST: db
|
||||||
# PGPORT: "5432"
|
PGPORT: "5432"
|
||||||
# IMAGEOPTION: "true"
|
IMAGEOPTION: "true"
|
||||||
# CONCURRENT_IMAGES: ${CONCURRENT_IMAGES}
|
CONCURRENT_IMAGES: ${CONCURRENT_IMAGES}
|
||||||
# healthcheck:
|
healthcheck:
|
||||||
# test: ["CMD", "curl", "-f", "http://localhost:1323/"]
|
test: ["CMD", "curl", "-f", "http://localhost:1323/"]
|
||||||
# interval: 10s
|
interval: 10s
|
||||||
# timeout: 5s
|
timeout: 5s
|
||||||
# retries: 5
|
retries: 5
|
||||||
# depends_on:
|
depends_on:
|
||||||
# minio:
|
minio:
|
||||||
# condition: service_healthy
|
condition: service_healthy
|
||||||
# db:
|
db:
|
||||||
# condition: service_healthy
|
condition: service_healthy
|
||||||
# keydb:
|
keydb:
|
||||||
# condition: service_healthy
|
condition: service_healthy
|
||||||
# tiles:
|
tiles:
|
||||||
# condition: service_healthy
|
condition: service_healthy
|
||||||
|
|
||||||
# web:
|
# web:
|
||||||
# platform: "linux/amd64"
|
# platform: "linux/amd64"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue