3 Commits
Author SHA1 Message Date
ishan-karmakar 7dfbe097c7 Expose HTTP port 2026-06-06 10:02:45 -05:00
ishan-karmakar 59962dddb2 Remove postgres database from compose 2026-06-06 09:24:35 -05:00
Cenk Kücük ec6c4da776 Update v3.2.1 2026-05-15 10:18:53 +01:00
2 changed files with 4 additions and 16 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
#### 1. Clone this repository
```console
$ git clone -b v3.2.0 --single-branch https://github.com/plausible/community-edition plausible-ce
$ git clone -b v3.2.1 --single-branch https://github.com/plausible/community-edition plausible-ce
Cloning into 'plausible-ce'...
$ cd plausible-ce
+3 -15
View File
@@ -1,15 +1,4 @@
services:
plausible_db:
image: postgres:16-alpine
restart: always
volumes:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
start_period: 1m
plausible_events_db:
image: clickhouse/clickhouse-server:24.12-alpine
restart: always
@@ -39,12 +28,10 @@ services:
start_period: 1m
plausible:
image: ghcr.io/plausible/community-edition:v3.2.0
image: ghcr.io/plausible/community-edition:v3.2.1
restart: always
command: sh -c "/entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh run"
depends_on:
plausible_db:
condition: service_healthy
plausible_events_db:
condition: service_healthy
volumes:
@@ -53,6 +40,8 @@ services:
nofile:
soft: 65535
hard: 65535
ports:
- 5000:8000
environment:
- TMPDIR=/var/lib/plausible/tmp
# required: https://github.com/plausible/community-edition/wiki/configuration#required
@@ -94,7 +83,6 @@ services:
- SENDGRID_API_KEY
volumes:
db-data:
event-data:
event-logs:
plausible-data: