38 lines
773 B
YAML
38 lines
773 B
YAML
volumes:
|
|
app:
|
|
postgres:
|
|
|
|
services:
|
|
|
|
statup:
|
|
container_name: statup
|
|
image: adamboutcher/statping-ng:latest
|
|
restart: always
|
|
ports:
|
|
- 48860:8080
|
|
depends_on:
|
|
- postgres
|
|
volumes:
|
|
- app:/app
|
|
environment:
|
|
VIRTUAL_HOST: localhost
|
|
VIRTUAL_PORT: 8080
|
|
DB_CONN: postgres
|
|
DB_HOST: postgres
|
|
DB_USER: admin
|
|
DB_PASS: anyhow-bronze-pyramid
|
|
DB_DATABASE: statping
|
|
NAME: delmar.bzh
|
|
DESCRIPTION: Statping instance for delmar.bzh
|
|
|
|
postgres:
|
|
container_name: postgres
|
|
image: postgres:10
|
|
restart: always
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_PASSWORD: anyhow-bronze-pyramid
|
|
POSTGRES_USER: admin
|
|
POSTGRES_DB: statping
|