You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
518 B
YAML
32 lines
518 B
YAML
services:
|
|
backend:
|
|
build: backend
|
|
secrets:
|
|
- db-password
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: postgres
|
|
restart: always
|
|
secrets:
|
|
- db-password
|
|
volumes:
|
|
- db-data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_DB=example
|
|
- POSTGRES_PASSWORD_FILE=/run/secrets/db-password
|
|
expose:
|
|
- 5432
|
|
|
|
proxy:
|
|
build: proxy
|
|
ports:
|
|
- 80:80
|
|
depends_on:
|
|
- backend
|
|
volumes:
|
|
db-data:
|
|
secrets:
|
|
db-password:
|
|
file: db/password.txt
|