forked from wangziqi/ruoyi-vue-pro
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
volumes:
|
|
postgres-data:
|
|
|
|
services:
|
|
app:
|
|
container_name: javadev
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
environment:
|
|
# NOTE: POSTGRES_DB/USER/PASSWORD should match values in db container
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: postgres
|
|
POSTGRES_HOSTNAME: db
|
|
|
|
volumes:
|
|
- ../..:/workspaces:cached
|
|
|
|
# Overrides default command so things don't shut down after the process ends.
|
|
command: sleep infinity
|
|
|
|
# Use proper Docker networking instead of network_mode: service:db
|
|
# to ensure reliable DNS resolution in all environments
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
networks:
|
|
- app-network
|
|
|
|
# Use "forwardPorts" in **devcontainer.json** to forward an app port locally.
|
|
# (Adding the "ports" property to this file will not forward from a Codespace.)
|
|
|
|
db:
|
|
container_name: postgresdb
|
|
image: postgres:latest
|
|
restart: unless-stopped
|
|
networks:
|
|
- app-network
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 30s
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql
|
|
environment:
|
|
# NOTE: POSTGRES_DB/USER/PASSWORD should match values in app container
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_DB: postgres
|
|
|
|
# Add "forwardPorts": ["5432"] to **devcontainer.json** to forward PostgreSQL locally.
|
|
# (Adding the "ports" property to this file will not forward from a Codespace.)
|
|
|
|
networks:
|
|
app-network:
|
|
driver: bridge |