You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.yml 159B

123456789101112
  1. web:
  2. build: .
  3. links:
  4. - mysql
  5. ports:
  6. - "3000:3000"
  7. mysql:
  8. image: mysql
  9. environment:
  10. - MYSQL_ROOT_PASSWORD=gogs
  11. - MYSQL_DATABASE=gogs