summaryrefslogtreecommitdiff
path: root/docker-compose.yml.example
diff options
context:
space:
mode:
authornullnyat <nullnyat@nca10.moe>2023-12-01 11:19:33 +0900
committerGitHub <noreply@github.com>2023-12-01 11:19:33 +0900
commit5cd4c36cad1fa38080f2b596b936d6b44db45cc7 (patch)
tree3491024ffba2931d7fde6e48b4186234803182c8 /docker-compose.yml.example
parentfix: invite系の戻り値が間違っている close #12517 (#12518) (diff)
downloadsharkey-5cd4c36cad1fa38080f2b596b936d6b44db45cc7.tar.gz
sharkey-5cd4c36cad1fa38080f2b596b936d6b44db45cc7.tar.bz2
sharkey-5cd4c36cad1fa38080f2b596b936d6b44db45cc7.zip
rename docker-compose.yml.example to docker-compose_example.yml (#12530)
* rename docker-compose.yml.example to docker-compose_example.yml * fix: dockle.yml
Diffstat (limited to 'docker-compose.yml.example')
-rw-r--r--docker-compose.yml.example67
1 files changed, 0 insertions, 67 deletions
diff --git a/docker-compose.yml.example b/docker-compose.yml.example
deleted file mode 100644
index 60ba4dc8ca..0000000000
--- a/docker-compose.yml.example
+++ /dev/null
@@ -1,67 +0,0 @@
-version: "3"
-
-services:
- web:
- build: .
- restart: always
- links:
- - db
- - redis
-# - meilisearch
- depends_on:
- db:
- condition: service_healthy
- redis:
- condition: service_healthy
- ports:
- - "3000:3000"
- networks:
- - internal_network
- - external_network
- volumes:
- - ./files:/misskey/files
- - ./.config:/misskey/.config:ro
-
- redis:
- restart: always
- image: redis:7-alpine
- networks:
- - internal_network
- volumes:
- - ./redis:/data
- healthcheck:
- test: "redis-cli ping"
- interval: 5s
- retries: 20
-
- db:
- restart: always
- image: postgres:15-alpine
- networks:
- - internal_network
- env_file:
- - .config/docker.env
- volumes:
- - ./db:/var/lib/postgresql/data
- healthcheck:
- test: "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"
- interval: 5s
- retries: 20
-
-# meilisearch:
-# restart: always
-# image: getmeili/meilisearch:v1.3.4
-# environment:
-# - MEILI_NO_ANALYTICS=true
-# - MEILI_ENV=production
-# env_file:
-# - .config/meilisearch.env
-# networks:
-# - internal_network
-# volumes:
-# - ./meili_data:/meili_data
-
-networks:
- internal_network:
- internal: true
- external_network: