docker-compose.yml 328 B

123456789101112131415161718
  1. version: '0.1'
  2. services:
  3. OAuth:
  4. container_name: GasCylinderApi
  5. image: GasCylinderApi:latest
  6. privileged: true
  7. restart: always
  8. ports:
  9. - 8000:8000
  10. volumes:
  11. - ./conf/:/GasCylinderApi/conf/
  12. - ./temp/:/GasCylinderApi/temp/
  13. networks:
  14. - myweb
  15. networks:
  16. myweb:
  17. driver: bridge