mirror of
https://forgejo.merr.is/annika/isl-api.git
synced 2025-12-13 04:56:50 -05:00
23 lines
450 B
YAML
23 lines
450 B
YAML
|
|
# Use postgres/example user/password credentials
|
||
|
|
version: '3.1'
|
||
|
|
|
||
|
|
services:
|
||
|
|
|
||
|
|
db:
|
||
|
|
image: postgres
|
||
|
|
restart: always
|
||
|
|
environment:
|
||
|
|
POSTGRES_USER: isl
|
||
|
|
POSTGRES_PASSWORD: development
|
||
|
|
POSTGRES_DB: isl
|
||
|
|
volumes:
|
||
|
|
- ./data:/var/lib/postgresql/data
|
||
|
|
- ./docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
||
|
|
ports:
|
||
|
|
- 5432:5432
|
||
|
|
adminer:
|
||
|
|
image: adminer
|
||
|
|
restart: always
|
||
|
|
ports:
|
||
|
|
- 8080:8080
|