services: web: image: vchikalkin/zapishis-web:latest env_file: - .env restart: always healthcheck: test: ["CMD", "curl", "-f", "http://localhost:3000/"] interval: 10s timeout: 3s retries: 5 # ports: # - 3000:3000 networks: - app - web bot: image: vchikalkin/zapishis-bot:latest env_file: - .env restart: always networks: - app networks: app: external: true web: external: true