On this screens you can see the error that I have
This is my docker-compose.yml
version: '3'
services:
mysql:
image: mysql:latest
restart: always
ports:
- 3306:3306
volumes:
- ~/workspace/db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=soextreme
- MYSQL_USER=root
- MYSQL_PASSWORD=root
gogs:
image: gogs/gogs:latest
depends_on:
- mysql
restart: always
ports:
- 3000:3000
- "10022:22"
volumes:
- ~/workspace/gogs:/data
For note, I found this solution on this link : my docker compose file but it's not working for me, Can you please help me, Thank you.