mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-25 14:29:51 -05:00
20 lines
325 B
YAML
20 lines
325 B
YAML
version: "2"
|
|
|
|
services:
|
|
database:
|
|
image: postgres
|
|
environment:
|
|
PGDATA: /var/lib/postgresql/data/pgdata
|
|
osem:
|
|
build:
|
|
context: .
|
|
args:
|
|
CONTAINER_USERID: 1000
|
|
command: /osem/bin/osem-init.sh
|
|
depends_on:
|
|
- database
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- .:/osem
|