Update docker compose files to version 3.9 (#2299)

* Update docker compose files to version 3.9

* Format yml files

* Update changelog

---------

Co-authored-by: Thomas <4159106+dtslvr@users.noreply.github.com>
pull/2293/head^2
longstone 1 year ago committed by GitHub
parent 9672de174e
commit 431500f28a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the validation in the activities import
- Improved the language localization for German (`de`)
- Refreshed the cryptocurrencies list
- Changed the version in the `docker-compose` files from `3.7` to `3.9`
## 1.305.0 - 2023-09-03

@ -1,4 +1,4 @@
version: '3.7'
version: '3.9'
services:
ghostfolio:
build: ../
@ -7,7 +7,7 @@ services:
environment:
DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}?connect_timeout=300&sslmode=prefer
NODE_ENV: production
REDIS_HOST: 'redis'
REDIS_HOST: redis
REDIS_PASSWORD: ${REDIS_PASSWORD}
ports:
- 3333:3333
@ -16,7 +16,6 @@ services:
condition: service_healthy
redis:
condition: service_healthy
postgres:
image: postgres:12
env_file:
@ -28,9 +27,8 @@ services:
retries: 5
volumes:
- postgres:/var/lib/postgresql/data
redis:
image: 'redis:alpine'
image: redis:alpine
healthcheck:
test: ['CMD-SHELL', 'redis-cli ping | grep PONG']
interval: 10s

@ -1,4 +1,4 @@
version: '3.7'
version: '3.9'
services:
postgres:
image: postgres:12
@ -10,9 +10,8 @@ services:
- 5432:5432
volumes:
- postgres:/var/lib/postgresql/data
redis:
image: 'redis:alpine'
image: redis:alpine
container_name: redis
restart: unless-stopped
ports:

@ -1,4 +1,4 @@
version: '3.7'
version: '3.9'
services:
ghostfolio:
image: ghostfolio/ghostfolio:latest
@ -7,7 +7,7 @@ services:
environment:
DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}?connect_timeout=300&sslmode=prefer
NODE_ENV: production
REDIS_HOST: 'redis'
REDIS_HOST: redis
REDIS_PASSWORD: ${REDIS_PASSWORD}
ports:
- 3333:3333
@ -16,7 +16,6 @@ services:
condition: service_healthy
redis:
condition: service_healthy
postgres:
image: postgres:12
env_file:
@ -28,9 +27,8 @@ services:
retries: 5
volumes:
- postgres:/var/lib/postgresql/data
redis:
image: 'redis:alpine'
image: redis:alpine
healthcheck:
test: ['CMD-SHELL', 'redis-cli ping | grep PONG']
interval: 10s

Loading…
Cancel
Save