We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getting: FATA (root) Additional property name is not allowed
for the following compose file: version: '3.8'
name: to services: m***: build: context: . target: dev volumes: - .:/app env_file: - .env environment: - MIX_ENV=dev # - SECRET_KEY_BASE=******** ports: - "4000:4000" links: - db depends_on: - db networks: - back-tier
db: image: postgres:13-bullseye restart: always environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres ports: - '5432:5432' volumes: - db-data:/var/lib/postgresql/data networks: - back-tier
volumes: db-data: {}
networks: front-tier: {} back-tier: {} %
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Can you post the gist of the YAML file? Hard to diagnose with your current yaml @ypadlyak
Successfully merging a pull request may close this issue.
getting:
FATA (root) Additional property name is not allowed
for the following compose file:
version: '3.8'
name: to
services:
m***:
build:
context: .
target: dev
volumes:
- .:/app
env_file:
- .env
environment:
- MIX_ENV=dev
# - SECRET_KEY_BASE=********
ports:
- "4000:4000"
links:
- db
depends_on:
- db
networks:
- back-tier
db:
image: postgres:13-bullseye
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- '5432:5432'
volumes:
- db-data:/var/lib/postgresql/data
networks:
- back-tier
volumes:
db-data: {}
networks:
front-tier: {}
back-tier: {} %
The text was updated successfully, but these errors were encountered: