Browse Source

docs: update docker-compose example

pull/1297/head
Nicolas Giard 5 years ago
committed by GitHub
parent
commit
208b651eb9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions
  1. 7
      dev/examples/docker-compose.yml

7
dev/examples/docker-compose.yml

@ -1,13 +1,15 @@
version: "3"
services:
db:
image: postgres:9-alpine
image: postgres:11-alpine
environment:
POSTGRES_DB: wiki
POSTGRES_PASSWORD: wikijsrocks
POSTGRES_USER: wikijs
logging:
driver: "none"
restart: unless-stopped
volumes:
- db-data:/var/lib/postgresql/data
@ -22,8 +24,9 @@ services:
DB_USER: wikijs
DB_PASS: wikijsrocks
DB_NAME: wiki
restart: unless-stopped
ports:
- "3000:3000" # <-- replace with "80:3000" to listen on port 80 instead
- "80:3000"
volumes:
db-data:
Loading…
Cancel
Save