skip to Main Content

Can I rename the original image in docker-compose?

My Configuration My docker-compose.yml looks like this with some config for backend etc..., but I need some changes for db service. version: '3.6' services: db: container_name: db-${STAGE:-dev} image: postgres:14.0-alpine volumes: - postgres_data:/var/lib/postgresql/data/ ports: - "5432:5432" env_file: - .env.${STAGE:-dev} I don't…

VIEW QUESTION
Back To Top
Search