diff --git a/docker-compose.yml b/docker-compose.yml index 6986571..3e1b75e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ -version: '3.8' +version: "3.8" services: db: - image: postgres:12.1-alpine + image: postgres:16-alpine container_name: pleroma_db restart: always healthcheck: @@ -19,13 +19,10 @@ services: container_name: pleroma_web healthcheck: test: - [ - "CMD-SHELL", - "wget -q --spider --proxy=off localhost:4000 || exit 1", - ] + ["CMD-SHELL", "wget -q --spider --proxy=off localhost:4000 || exit 1"] restart: always ports: - - '4000:4000' + - "4000:4000" build: context: . # Feel free to remove or override this section