API de comptabilité horaire.
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 279B

123456789101112131415
  1. version: "3"
  2. services:
  3. chronobriq-api:
  4. build: .
  5. ports:
  6. - "9000:9000"
  7. depends_on:
  8. - db
  9. db:
  10. image: postgres:12-alpine
  11. volumes:
  12. - database:/var/lib/postgresql/chronobriq-api
  13. volumes:
  14. database: