Advertisement
petrikjosef

Untitled

Apr 2nd, 2022
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. version: "3"
  2.  
  3. services:
  4. app:
  5.  
  6. build:
  7. network: host
  8. context: ./app
  9. container_name: pk_app
  10. #restart: unless-stopped
  11. environment:
  12. NODE_ENV: production
  13. DATABASE_CLIENT: mysql
  14. #DATABASE_HOST: 185.247.28.117
  15. #DATABASE_PORT: 3306
  16. #DATABASE_NAME: plzenskekapelystrapi
  17. #DATABASE_USERNAME: plzenskekapelystrapi
  18. #DATABASE_PASSWORD: xxxxx
  19. DATABASE_HOST: 127.0.0.1
  20. DATABASE_PORT: 3306
  21. DATABASE_NAME: pk_strapi
  22. DATABASE_USERNAME: root
  23. DATABASE_PASSWORD: root
  24. APP_KEYS: testKey1,testKey2
  25. volumes:
  26. - ./app:/srv/app
  27. ports:
  28. - 1337:1337
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement