Stylised comments for better readability
This commit is contained in:
parent
00c8a65879
commit
91793dd3d6
1 changed files with 7 additions and 3 deletions
|
@ -1,18 +1,22 @@
|
||||||
# This file is for testing only, as I don't recommend using Docker Compose in a production environment
|
## This file is for testing only, as I don't recommend using Docker Compose
|
||||||
|
## in a production environment
|
||||||
version: "3.7"
|
version: "3.7"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
db:
|
db:
|
||||||
image: postgres:14-alpine
|
image: postgres:14-alpine
|
||||||
# image: groonga/pgroonga:3.1.1-alpine-14 # Use this one if you want to use PGroonga
|
## Use the following image instead if you want to use PGroonga
|
||||||
|
# image: groonga/pgroonga:3.1.1-alpine-14
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: akkoma
|
POSTGRES_DB: akkoma
|
||||||
POSTGRES_USER: akkoma
|
POSTGRES_USER: akkoma
|
||||||
POSTGRES_PASSWORD: akkoma
|
POSTGRES_PASSWORD: akkoma
|
||||||
# Comment out the volume below if you encounter any permission errors
|
|
||||||
volumes:
|
volumes:
|
||||||
- ./docker-db/:/var/lib/postgresql/data/:Z
|
- ./docker-db/:/var/lib/postgresql/data/:Z
|
||||||
|
## Use the following volume instead if you are running Docker in
|
||||||
|
## emulated environments and getting permission errors
|
||||||
|
# - docker-db:/var/lib/postgresql/data/:Z
|
||||||
|
|
||||||
akkoma:
|
akkoma:
|
||||||
image: akkoma:latest
|
image: akkoma:latest
|
||||||
|
|
Loading…
Reference in a new issue