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.
30 lines
530 B
YAML
30 lines
530 B
YAML
version: "3.7"
|
|
services:
|
|
backend:
|
|
build: backend
|
|
ports:
|
|
- 80:8080
|
|
environment:
|
|
POSTGRES_DB: example
|
|
networks:
|
|
- spring-postges
|
|
db:
|
|
environment:
|
|
POSTGRES_DB: example
|
|
POSTGRES_PASSWORD_FILE: /run/secrets/db-password
|
|
image: postgres
|
|
restart: always
|
|
secrets:
|
|
- db-password
|
|
volumes:
|
|
- db-data:/var/lib/postgresql/data
|
|
networks:
|
|
- spring-postges
|
|
volumes:
|
|
db-data: {}
|
|
secrets:
|
|
db-password:
|
|
file: db/password.txt
|
|
networks:
|
|
spring-postges: {}
|