Closed bitterteriyaki closed 1 year ago
I can't see anything wrong with this configuration. According to build logs
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 32B done
Dockerfile is well identified on configured path and send to builder.
Please run docker compose config
to check the parsed/normalized compose model being used by Docker Compose.
I can't see anything wrong with this configuration. According to build logs
#1 [internal] load build definition from Dockerfile #1 transferring dockerfile: 32B done
Dockerfile is well identified on configured path and send to builder.
Please run
docker compose config
to check the parsed/normalized compose model being used by Docker Compose.
Hi, @ndeloof. Thanks for your answer! Here is the output of the docker compose config
command:
name: keth
services:
bot:
build:
context: /Users/kyomi/Repositories/keth
dockerfile: ./docker/bot/Dockerfile
args:
BOT_ENV: development
cache_from:
- keth:dev
- keth:latest
- '*'
target: development_build
command:
- python
- -Wd
- launcher.py
environment:
DISCORD_TOKEN: <my-bots-token-here>
image: keth:dev
networks:
botnet: null
web:
build:
context: /Users/kyomi/Repositories/keth
dockerfile: Dockerfile
args:
GID: "1000"
UID: "1000"
networks:
default: null
volumes:
- type: bind
source: /Users/kyomi/Repositories/keth
target: /code
bind:
create_host_path: true
networks:
botnet:
name: keth_botnet
default:
name: keth_default
Oh, my docker-compose.override.yml
was using a wrong service name. 🤦
Changed it and now it's working perfectly, sorry for wasting your time and thank you for the support. Closing this issue.
Description
Project tree:
Steps To Reproduce
Running
docker compose up
:Compose Version
Anything else?
No response