services: frontend: container_name: frontend build: ./frontend ports: - "7002:80" restart: always backend: container_name: backend build: ./backend ports: - "7001:7001" volumes: - ./backend:/bikelane-backend restart: unless-stopped