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
5 years ago
|
version: "3.7"
|
||
|
services:
|
||
|
backend:
|
||
|
build: backend
|
||
|
ports:
|
||
|
- 80:8080
|
||
5 years ago
|
environment:
|
||
|
POSTGRES_DB: example
|
||
|
networks:
|
||
|
- spring-postges
|
||
5 years ago
|
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
|
||
5 years ago
|
networks:
|
||
|
- spring-postges
|
||
5 years ago
|
volumes:
|
||
|
db-data: {}
|
||
|
secrets:
|
||
|
db-password:
|
||
|
file: db/password.txt
|
||
5 years ago
|
networks:
|
||
|
spring-postges: {}
|