diff options
| author | Marie <Marie@kaifa.ch> | 2023-12-23 02:09:23 +0100 |
|---|---|---|
| committer | Marie <Marie@kaifa.ch> | 2023-12-23 02:09:23 +0100 |
| commit | 5db583a3eb61d50de14d875ebf7ecef20490e313 (patch) | |
| tree | 783dd43d2ac660c32e745a4485d499e9ddc43324 /docker-compose_example.yml | |
| parent | add: Custom MOTDs (diff) | |
| parent | Update CHANGELOG.md (diff) | |
| download | sharkey-5db583a3eb61d50de14d875ebf7ecef20490e313.tar.gz sharkey-5db583a3eb61d50de14d875ebf7ecef20490e313.tar.bz2 sharkey-5db583a3eb61d50de14d875ebf7ecef20490e313.zip | |
merge: upstream
Diffstat (limited to 'docker-compose_example.yml')
| -rw-r--r-- | docker-compose_example.yml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/docker-compose_example.yml b/docker-compose_example.yml new file mode 100644 index 0000000000..5a8560bb42 --- /dev/null +++ b/docker-compose_example.yml @@ -0,0 +1,65 @@ +version: "3" + +services: + web: +# replace image below with git.joinsharkey.org/sharkey/sharkey:stable on next release +# image: ghcr.io/transfem-org/sharkey:stable + build: . + restart: always + links: + - db + - redis +# - meilisearch + depends_on: + db: + condition: service_healthy + redis: + condition: service_healthy + ports: + - "3000:3000" + networks: + - shonk + volumes: + - ./files:/sharkey/files + - ./.config:/sharkey/.config:ro + + redis: + restart: always + image: redis:7-alpine + networks: + - shonk + volumes: + - ./redis:/data + healthcheck: + test: "redis-cli ping" + interval: 5s + retries: 20 + + db: + restart: always + image: postgres:15-alpine + networks: + - shonk + 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 +# networks: +# - shonk +# volumes: +# - ./meili_data:/meili_data + + +networks: + shonk: |