Last active
March 18, 2024 09:39
-
-
Save andreafalzetti/30311d9dba40b46422e65671bdbf3550 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
movies: | |
image: okteto/movies-with-compose:proxy | |
ports: | |
- 80:80 | |
depends_on: | |
- api | |
- frontend | |
restart: always | |
frontend: | |
image: okteto/movies-with-compose:frontend | |
ports: | |
- 80 | |
volumes: | |
- frontend:/src | |
command: yarn start | |
api: | |
image: okteto/movies-with-compose:api | |
environment: | |
- MONGODB_USERNAME=okteto | |
- MONGODB_PASSWORD=mongodb123 | |
- MONGODB_DATABASE=okteto | |
- MONGODB_HOST=mongodb | |
ports: | |
- 8080 | |
volumes: | |
- api:/src | |
command: yarn start | |
depends_on: | |
mongodb: | |
condition: service_healthy | |
labels: | |
- dev.okteto.com/label-1=service-label-1 | |
- dev.okteto.com/label-2=service-label-2 | |
- dev.okteto.com/label-3=service-label-3 | |
annotations: | |
dev.okteto.com/annotation-1: service-annotation-1 | |
dev.okteto.com/annotation-2: service-annotation-2 | |
dev-okteto-com-annotation-3: service-annotation-3 | |
init: | |
image: okteto/movies-with-compose:api | |
environment: | |
- MONGODB_USERNAME=okteto | |
- MONGODB_PASSWORD=mongodb123 | |
- MONGODB_DATABASE=okteto | |
- MONGODB_HOST=mongodb | |
command: yarn load | |
restart: never | |
depends_on: | |
mongodb: | |
condition: service_healthy | |
mongodb: | |
image: docker.io/bitnami/mongodb:5.0 | |
environment: | |
- MONGODB_USERNAME=okteto | |
- MONGODB_PASSWORD=mongodb123 | |
- MONGODB_DATABASE=okteto | |
- MONGODB_ROOT_PASSWORD=mongodb123root | |
- MONGODB_SYSTEM_LOG_VERBOSITY=0 | |
- MONGODB_DISABLE_SYSTEM_LOG=no | |
- MONGODB_ENABLE_IPV6=no | |
- MONGODB_ENABLE_DIRECTORY_PER_DB=no | |
ports: | |
- 27017 | |
volumes: | |
- data:/bitnami/mongodb | |
volumes: | |
data: | |
name: myapp-data | |
labels: | |
dev.okteto.com/label-1: volume-label-1 | |
dev.okteto.com/label-2: volume-label-2 | |
dev.okteto.description: "Database volume" | |
dev.okteto.department: "IT/Ops" | |
dev.okteto.label-with-empty-value: "" | |
# Docker Compose does not support volume annotations | |
# annotations: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment