services: redis: image: "redis:latest" volumes: - redis-data:/data expose: - 6379 environment: - TZ=Europe/Paris database: image: "postgres:latest" expose: - 5432 volumes: - postgres-data:/var/lib/postgresql/data environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: school TZ: Europe/Paris backend: image: git.v0id.ovh/n3wt-innov/n3wt-school/backend:latest ports: - 8080:8080 env_file: "./conf/backend.env" links: - "database:database" - "redis:redis" depends_on: - redis - database command: python start.py frontend: image: git.v0id.ovh/n3wt-innov/n3wt-school/frontend:latest ports: - 3000:3000 environment: - TZ=Europe/Paris - NODE_ENV=production volumes: - ./conf/env:/app/.env volumes: postgres-data: redis-data: