This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
statping/compose.yml

51 lines
936 B
YAML
Raw Normal View History

2021-01-05 22:06:09 +00:00
---
version: "3.8"
services:
app:
2021-01-09 11:32:55 +00:00
image: statping/statping:v0.90.74
2021-01-05 22:06:09 +00:00
networks:
- proxy
2021-01-09 11:32:55 +00:00
- backend
depends_on:
- db
volumes:
- statping:/app
#configs:
# - source: entrypoint_conf
# target: /docker-entrypoint.sh
# mode: 0555
secrets:
- db_password
environment:
VIRTUAL_HOST: localhost
VIRTUAL_PORT: 8080
DB_CONN: sqlite
NAME: ${SITE_NAME}
DESCRIPTION: ${SITE_DESCRIPTION}
#postgres:
# image: postgres:10
# networks:
# - backend
# volumes:
# - postgressql:/var/lib/postgresql/data
# environment:
# POSTGRES_PASSWORD: password123
# POSTGRES_USER: statup
# POSTGRES_DB: statup
volumes:
statping:
#postgresql:
#configs:
# entrypoint_conf:
# name: ${STACK_NAME}_entrypoint_conf_${ENTRYPOINT_CONF_VERSION}
# file: entrypoint.sh.tmpl
2021-01-05 22:06:09 +00:00
networks:
proxy:
external: true
2021-01-09 11:32:55 +00:00
backend: