mirror of
https://github.com/openSUSE/osem.git
synced 2026-06-11 17:25:15 -04:00
18 lines
298 B
Plaintext
18 lines
298 B
Plaintext
version: "2"
|
|
|
|
services:
|
|
database:
|
|
image: postgres
|
|
environment:
|
|
PGDATA: /var/lib/postgresql/data/pgdata
|
|
web:
|
|
build: .
|
|
# env_file: dotenv.example
|
|
command: /osem/bin/osem-init.sh
|
|
depends_on:
|
|
- database
|
|
ports:
|
|
- 5000:5000
|
|
volumes:
|
|
- .:/osem
|