/
legioner9
/
awesome-compose
Обзор
Документация
Войти
/
legioner9
/
awesome-compose
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
react-rust-postgres/compose.yaml
52 строки
956 B
Guillaume Lours
add configuration to use react-rust-postgres sample with Docker Dev Environments feature (#264)
08 июл 2022, 18:54
Не верифицирован
08 июл 2022, 18:54
c781f1c
Код
Авторство
О чём код?
name: react-rust-postgres services: frontend: build: context: frontend target: development networks: - client-side ports: - 3000:3000 volumes: - ./frontend/src:/code/src:ro backend: build: context: backend target: development environment: - ADDRESS=0.0.0.0:8000 - RUST_LOG=debug - PG_DBNAME=postgres - PG_HOST=db - PG_USER=postgres - PG_PASSWORD=mysecretpassword networks: - client-side - server-side volumes: - ./backend/src:/code/src - backend-cache:/code/target depends_on: - db db: image: postgres:12-alpine restart: always environment: - POSTGRES_PASSWORD=mysecretpassword networks: - server-side ports: - 5432:5432 volumes: - db-data:/var/lib/postgresql/data networks: client-side: {} server-side: {} volumes: backend-cache: {} db-data: {}