mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-03 02:30:57 -05:00
21 lines
379 B
YAML
21 lines
379 B
YAML
version: "2.4"
|
|
|
|
services:
|
|
database:
|
|
image: postgres:12-alpine
|
|
environment:
|
|
PGDATA: /var/lib/postgresql/data/pgdata
|
|
POSTGRES_PASSWORD: mysecretpassword
|
|
osem:
|
|
build:
|
|
context: .
|
|
args:
|
|
CONTAINER_USERID: 1000
|
|
command: /osem/bin/osem-init.sh
|
|
depends_on:
|
|
- database
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- .:/osem
|