Something went wrong. Try again.
Project for the UPV to develop an app like BlaBlaCar but only for UPV people.
Something went wrong. Try again.
upvcarshare dev.yml
614 B · 32 lines
YAML
at main
123456789101112131415161718192021222324252627282930313233# Docker-compose file to launch services during the development.version: '2'
volumes: db-data: driver: local
services:
app: build: context: . dockerfile: ./compose/app/Dockerfile-dev container_name: upvcarshare-app command: /start-dev.sh env_file: .env volumes: - .:/app ports: - "8888:8888"
db: build: compose/postgis/. image: upvcarshare/postgis container_name: upvcarshare-db volumes: - db-data:/var/lib/postgresql ports: - "5432:5432" environment: POSTGRES_PASSWORD: potato POSTGRES_DB: upvcarshare