services: web: image: ${DOCKERHUB_USERNAME}/zapishis-web:${WEB_IMAGE_TAG} env_file: - .env restart: always healthcheck: test: ["CMD", "curl", "-f", "http://localhost:3000/"] interval: 10s timeout: 3s retries: 5 networks: - app - web bot: image: ${DOCKERHUB_USERNAME}/zapishis-bot:${BOT_IMAGE_TAG} env_file: - .env restart: always networks: - app networks: app: external: true web: external: true