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
When execute command with docker-compose up -d the program throw a error like this:
docker-compose up -d
ERROR: The Compose file './docker-compose.yml' is invalid because: Unsupported config option for services: 'ftp-server'
The solution it's put version: '3' in the file docker-compose.yml
version: '3' services: ftp-server: container_name: my-ftp-server environment: - FTP_PASS=tambok - FTP_USER=zaytos image: garethflowers/ftp-server ports: - '20-21:20-21/tcp' - '40000-40009:40000-40009/tcp' volumes: - '/data:/home/user'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When execute command with
docker-compose up -d
the program throw a error like this:ERROR: The Compose file './docker-compose.yml' is invalid because:
Unsupported config option for services: 'ftp-server'
The solution it's put version: '3' in the file docker-compose.yml
The text was updated successfully, but these errors were encountered: