chore: update water data sets and migrate docker configuration to directory-based structure
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/push Build encountered an error
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: timescale/timescaledb:latest-pg16
|
||||
container_name: hladinator-db
|
||||
restart: always
|
||||
environment:
|
||||
POSTGRES_DB: hladinator
|
||||
POSTGRES_USER: hladinator_user
|
||||
POSTGRES_PASSWORD: hladinator_db_password_change_me
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- pgdata:/var/lib/postgresql/data
|
||||
|
||||
web:
|
||||
build:
|
||||
context: ..
|
||||
dockerfile: Docker/Dockerfile
|
||||
container_name: hladinator-web
|
||||
restart: always
|
||||
ports:
|
||||
- "80:80"
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
volumes:
|
||||
pgdata:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user