A fork of https://github.com/teal-fm/piper
at 473cb159ecbe126c480cfbea5e73b40d7a3306cc 18 lines 271 B view raw
1services: 2 piper: 3 build: 4 context: . 5 dockerfile: Dockerfile 6 ports: 7 - "8080:8080" 8 env_file: 9 - .env 10 volumes: 11 - piper_data:/db 12 networks: 13 - app_network 14volumes: 15 piper_data: 16networks: 17 app_network: 18 driver: bridge