Repository begleitend zum Blockseminar
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.

compose.yml 343B

123456789101112131415161718192021
  1. services:
  2. app:
  3. build: ./app
  4. links:
  5. - db
  6. ports:
  7. - "5000:5000"
  8. depends_on:
  9. - db
  10. db:
  11. image: mysql:5.7
  12. ports:
  13. - "3306:3306"
  14. environment:
  15. MYSQL_ROOT_PASSWORD: root_password
  16. volumes:
  17. - ./db/init.sql:/docker-entrypoint-initdb.d/init.sql
  18. - ./data:/var/lib/mysql